On 27.01.2015 11:09, Peter Maydell wrote: > On 27 January 2015 at 09:24, Claudio Fontana <claudio.font...@huawei.com> > wrote: >> On 22.01.2015 16:52, Alexander Graf wrote: >>> On 22.01.15 16:28, Claudio Fontana wrote: >>>> Alex wrote; >>>>> + for (devfn = 0; devfn <= 0x18; devfn+=0x8) { >>>> >>>> devfn += 0x8 (spaces) >>> >>> Yeah, I had it like that and it looked uglier. I guess it's a matter of >>> personal preference? >> >> You don't have coding standards for this ? > > Not formal ones, but (a) I think += should have spaces aronud > it and (b) I'm a bit surprised if checkpatch doesn't catch > this (it certainly attempts to...) > > -- PMM
It does: ERROR: spaces required around that '+=' (ctx:VxV) #167: FILE: hw/arm/virt.c:571: + for (devfn = 0; devfn <= 0x18; devfn+=0x8) { ^ Claudio