mb/pcengines/apu2/mainboard.c: unify hexadecimal notation using capital letters
mainboard_intr_data table mixed hexadecimal notation with both small and capital letters. Now, it is unified to capitals only. Signed-off-by: Piotr Kleinschmidt <piotr.kleinschmidt@3mdeb.com> Change-Id: Icd8cf4324e72e87e7e98869872785523fb4e1809 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42388 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
7e75f33de5
commit
49e0e00168
|
@ -64,16 +64,16 @@ static const u8 mainboard_intr_data[FCH_INT_TABLE_SIZE] = {
|
|||
/* Misc-nil,0,1,2, INT from Serial irq */
|
||||
[0x08] = 0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F,
|
||||
/* SCI, SMBUS0, ASF, HDA, FC, RSVD, PerMon, SD */
|
||||
[0x10] = 0x09,0x1F,0x1F,0x1F,0x1F,0x1f,0x1F,0x10,
|
||||
[0x10] = 0x09,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x10,
|
||||
[0x18] = 0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
/* IMC INT0 - 5 */
|
||||
[0x20] = 0x05,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,
|
||||
[0x28] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
/* USB Devs 18/19/20/22 INTA-C */
|
||||
[0x30] = 0x12,0x1f,0x12,0x1F,0x12,0x1F,0x1F,0x00,
|
||||
[0x30] = 0x12,0x1F,0x12,0x1F,0x12,0x1F,0x1F,0x00,
|
||||
[0x38] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
/* SATA */
|
||||
[0x40] = 0x1f,0x13,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
[0x40] = 0x1F,0x13,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
[0x48] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
[0x50] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
[0x58] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
|
Loading…
Reference in New Issue