mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
s/device_get_handle/acpi_get_handle
Submitted by: Hiroyuki Aizu
This commit is contained in:
parent
538a4c1f75
commit
591b993b83
2 changed files with 2 additions and 2 deletions
|
|
@ -529,7 +529,7 @@ acpi_toshiba_video_probe(device_t dev)
|
|||
if (!acpi_disabled("toshiba") &&
|
||||
acpi_get_type(dev) == ACPI_TYPE_DEVICE &&
|
||||
device_get_unit(dev) == 0 &&
|
||||
acpi_MatchHid(device_get_handle(dev), "TOS6201")) {
|
||||
acpi_MatchHid(acpi_get_handle(dev), "TOS6201")) {
|
||||
device_quiet(dev);
|
||||
device_set_desc(dev, "Toshiba Video");
|
||||
ret = 0;
|
||||
|
|
|
|||
|
|
@ -529,7 +529,7 @@ acpi_toshiba_video_probe(device_t dev)
|
|||
if (!acpi_disabled("toshiba") &&
|
||||
acpi_get_type(dev) == ACPI_TYPE_DEVICE &&
|
||||
device_get_unit(dev) == 0 &&
|
||||
acpi_MatchHid(device_get_handle(dev), "TOS6201")) {
|
||||
acpi_MatchHid(acpi_get_handle(dev), "TOS6201")) {
|
||||
device_quiet(dev);
|
||||
device_set_desc(dev, "Toshiba Video");
|
||||
ret = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue