diff options
Diffstat (limited to 'src/mainboard/google/brya')
-rw-r--r-- | src/mainboard/google/brya/acpi/nbci.asl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainboard/google/brya/acpi/nbci.asl b/src/mainboard/google/brya/acpi/nbci.asl index 0564f7aea4..274c04be7f 100644 --- a/src/mainboard/google/brya/acpi/nbci.asl +++ b/src/mainboard/google/brya/acpi/nbci.asl @@ -8,6 +8,8 @@ /* 'DR' in ASCII, for DRiver Object */ #define NBCI_OBJTYPE_DR 0x4452 +#define GPS_FUNC_GETCALLBACKS 0x13 + Method (NBCI, 2, Serialized) { Switch (ToInteger (Arg0)) @@ -30,7 +32,8 @@ Method (NBCI, 2, Serialized) } Case (NBCI_FUNC_GETCALLBACKS) { - Return (0) + /* Re-use the GPS subfunction's GETCALLBACKS Method */ + Return (GPS (GPS_FUNC_GETCALLBACKS, Arg1)) } Case (NBCI_FUNC_GETOBJBYTYPE) { |