diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-12-19 16:32:47 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-03 19:33:01 +0100 |
commit | 72a2eaf4d5364d5c5b7632b75d62c84f7bf490c8 (patch) | |
tree | f63ecf0523f5d8f225ce0db00e65fa52e1fade9c /src/mainboard/getac | |
parent | 64b364d1ec85f97fe948ba41cf8e7a3f43503829 (diff) |
Rename mainboard_smi.c to smihandler.c
This mirrors the naming convention of handlers in
northbridge and southbridge.
Change-Id: I45d97c569991c955f0ae54ce909d8c267e9a5173
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/2058
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/getac')
-rw-r--r-- | src/mainboard/getac/p470/acpi/ec.asl | 4 | ||||
-rw-r--r-- | src/mainboard/getac/p470/smihandler.c (renamed from src/mainboard/getac/p470/mainboard_smi.c) | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/getac/p470/acpi/ec.asl b/src/mainboard/getac/p470/acpi/ec.asl index 70faab2836..b8e2954558 100644 --- a/src/mainboard/getac/p470/acpi/ec.asl +++ b/src/mainboard/getac/p470/acpi/ec.asl @@ -425,14 +425,14 @@ Scope(\_SB) Method(SBLL, 1, Serialized) { Store (Arg0, BRTL) - TRAP(0xd5) // See mainboard_smi.c + TRAP(0xd5) // See mainboard's smihandler.c Return (0) } /* Get Brightness Level */ Method(GBLL, 0, Serialized) { - TRAP(0xd6) // See mainboard_smi.c + TRAP(0xd6) // See mainboard's smihandler.c Return (BRTL) } diff --git a/src/mainboard/getac/p470/mainboard_smi.c b/src/mainboard/getac/p470/smihandler.c index 4a5a3ffbbb..4a5a3ffbbb 100644 --- a/src/mainboard/getac/p470/mainboard_smi.c +++ b/src/mainboard/getac/p470/smihandler.c |