diff options
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/via/epia-n/acpi/irq_links.asl | 8 | ||||
-rw-r--r-- | src/mainboard/via/epia-n/acpi/pata_methods.asl | 15 |
2 files changed, 12 insertions, 11 deletions
diff --git a/src/mainboard/via/epia-n/acpi/irq_links.asl b/src/mainboard/via/epia-n/acpi/irq_links.asl index fc93e760b5..29b2a1bbc8 100644 --- a/src/mainboard/via/epia-n/acpi/irq_links.asl +++ b/src/mainboard/via/epia-n/acpi/irq_links.asl @@ -16,7 +16,7 @@ /* Status - always return ready */ Method (_STA, 0, NotSerialized) { - /* See If Coreboot has allocated INTA# */ + /* See if coreboot has allocated INTA# */ And (PIRA, 0xF0, Local0) If (LEqual (Local0, 0x00)) { @@ -94,7 +94,7 @@ Name (_UID, 0x02) Method (_STA, 0, NotSerialized) { - /* See If Coreboot has allocated INTB# */ + /* See if coreboot has allocated INTB# */ And (PIBC, 0x0F, Local0) If (LEqual (Local0, 0x00)) { @@ -172,7 +172,7 @@ Name (_UID, 0x03) Method (_STA, 0, NotSerialized) { - /* See If Coreboot has allocated INTC# */ + /* See if coreboot has allocated INTC# */ And (PIBC, 0xF0, Local0) If (LEqual (Local0, 0x00)) { @@ -251,7 +251,7 @@ Device (LNKD) Name (_UID, 0x04) Method (_STA, 0, NotSerialized) { - /* See If Coreboot has allocated INTD# */ + /* See if coreboot has allocated INTD# */ And (PIRD, 0xF0, Local0) If (LEqual (Local0, 0x00)) { diff --git a/src/mainboard/via/epia-n/acpi/pata_methods.asl b/src/mainboard/via/epia-n/acpi/pata_methods.asl index 68d505868e..6106fc9a36 100644 --- a/src/mainboard/via/epia-n/acpi/pata_methods.asl +++ b/src/mainboard/via/epia-n/acpi/pata_methods.asl @@ -47,13 +47,14 @@ Name (TIM0, Package (0x07) }) -/* This method sets up the PATA Timing Control*/ -/* Note that a lot of this is done in the */ -/* Coreboot VT8237R Init code, but this is */ -/* already getting very cluttered with board */ -/* specific code. Using ACPI will allow this */ -/* to be de-cluttered a bit (so long as we're */ -/* running a ACPI Capable OS !!!) */ +/* This method sets up the PATA Timing Control. + * Note that a lot of this is done in the + * coreboot VT8237R init code, but this is + * already getting very cluttered with board + * specific code. Using ACPI will allow this + * to be de-cluttered a bit (so long as we're + * running a ACPI capable OS!) + */ Method (PMEX, 0, Serialized) { |