arch/x86: Wrap lines at 80 columns
Fix the following warning detected by checkpatch.pl: WARNING: line over 80 characters TEST=Build and run on Galileo Gen2 Change-Id: I3495cd30d1737d9ee728c8a9e72bd426d7a69c37 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18864 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
@@ -22,11 +22,11 @@
|
||||
|
||||
#if !CONFIG_PCI_IO_CFG_EXT
|
||||
#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
|
||||
(devfn << 8) | (where & ~3))
|
||||
(devfn << 8) | (where & ~3))
|
||||
#else
|
||||
#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
|
||||
(devfn << 8) | ((where & 0xff) & ~3) |\
|
||||
((where & 0xf00)<<16))
|
||||
(devfn << 8) | ((where & 0xff) & ~3) |\
|
||||
((where & 0xf00)<<16))
|
||||
#endif
|
||||
|
||||
static uint8_t pci_conf1_read_config8(struct bus *pbus, int bus, int devfn,
|
||||
|
Reference in New Issue
Block a user