diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-04-26 22:21:21 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-30 16:26:43 +0000 |
commit | 9c5d4634dd39a0d3000a21c8e35a885360731529 (patch) | |
tree | e65f1d9efe5c361fa39bcf1763077dd11095a7d5 /src/southbridge/intel/i82371eb/acpi | |
parent | 9ab9db0bc5a1bf8bb35980068a840691d54aa5dd (diff) |
southbridge/intel: Remove space before/after parenthesis
Change-Id: Id1bc0c88aeecc3f1d12964346326e5b087a2985e
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/25880
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82371eb/acpi')
-rw-r--r-- | src/southbridge/intel/i82371eb/acpi/i82371eb.asl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi/i82371eb.asl b/src/southbridge/intel/i82371eb/acpi/i82371eb.asl index 305da2a8dd..cef36e924d 100644 --- a/src/southbridge/intel/i82371eb/acpi/i82371eb.asl +++ b/src/southbridge/intel/i82371eb/acpi/i82371eb.asl @@ -29,11 +29,11 @@ /* 8259-compatible Programmable Interrupt Controller */ Device (PIC) { - Name (_HID, EisaId ("PNP0000") ) + Name (_HID, EisaId ("PNP0000")) Name (_CRS, ResourceTemplate () { - IO (Decode16, 0x0020, 0x0020, 0x01, 0x02, ) - IO (Decode16, 0x00A0, 0x00A0, 0x01, 0x02, ) + IO (Decode16, 0x0020, 0x0020, 0x01, 0x02,) + IO (Decode16, 0x00A0, 0x00A0, 0x01, 0x02,) IRQNoFlags () {2} }) } @@ -41,10 +41,10 @@ /* PC-class DMA Controller */ Device (DMA1) { - Name (_HID, EisaId ("PNP0200") ) + Name (_HID, EisaId ("PNP0200")) Name (_CRS, ResourceTemplate () { - DMA (Compatibility, BusMaster, Transfer8, ) {4} + DMA (Compatibility, BusMaster, Transfer8,) {4} IO (Decode16, 0x0000, 0x0000, 0x01, 0x10,) IO (Decode16, 0x0080, 0x0080, 0x01, 0x11,) IO (Decode16, 0x0094, 0x0094, 0x01, 0x0C,) @@ -66,7 +66,7 @@ /* AT Real-Time Clock */ Device (RTC) { - Name (_HID, EisaId ("PNP0B00") ) + Name (_HID, EisaId ("PNP0B00")) Name (_CRS, ResourceTemplate () { IO (Decode16,0x0070,0x0070,0x01,0x04,) @@ -86,7 +86,7 @@ /* x87-compatible Floating Point Processing Unit */ Device (COPR) { - Name (_HID, EisaId ("PNP0C04") ) + Name (_HID, EisaId ("PNP0C04")) Name (_CRS, ResourceTemplate () { IO (Decode16,0x00F0,0x00F0,0x01,0x10,) |