From: Andrew Morton Convert to the One True Commenting Style. Cc: Ralf Baechle Cc: Alan Cox Cc: Greg KH Signed-off-by: Andrew Morton --- drivers/pci/setup-res.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff -puN drivers/pci/setup-res.c~pci-legacy-resource-fix-tidy drivers/pci/setup-res.c --- a/drivers/pci/setup-res.c~pci-legacy-resource-fix-tidy +++ a/drivers/pci/setup-res.c @@ -33,15 +33,19 @@ pci_update_resource(struct pci_dev *dev, u32 new, check, mask; int reg; - /* Ignore resources for unimplemented BARs and unused resource slots - for 64 bit BARs. */ + /* + * Ignore resources for unimplemented BARs and unused resource slots + * for 64 bit BARs. + */ if (!res->flags) return; - /* Ignore non-moveable resources. This might be legacy resources for - which no functional BAR register exists or another important - system resource we should better not move around in system address - space. */ + /* + * Ignore non-moveable resources. This might be legacy resources for + * which no functional BAR register exists or another important + * system resource we should better not move around in system address + * space. + */ if (res->flags & IORESOURCE_PCI_FIXED) return; _