Lines Matching full:hrv
911 s64 hrv; member
918 unsigned long long hrv; in acpi_dev_match_cb() local
927 if (match->hrv == -1) in acpi_dev_match_cb()
930 status = acpi_evaluate_integer(adev->handle, "_HRV", NULL, &hrv); in acpi_dev_match_cb()
934 return hrv == match->hrv; in acpi_dev_match_cb()
941 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
957 bool acpi_dev_present(const char *hid, const char *uid, s64 hrv) in acpi_dev_present() argument
964 match.hrv = hrv; in acpi_dev_present()
974 * @adev: Pointer to the previous ACPI device matching this @hid, @uid and @hrv
977 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
989 acpi_dev_get_next_match_dev(struct acpi_device *adev, const char *hid, const char *uid, s64 hrv) in acpi_dev_get_next_match_dev() argument
997 match.hrv = hrv; in acpi_dev_get_next_match_dev()
1009 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
1019 acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv) in acpi_dev_get_first_match_dev() argument
1021 return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv); in acpi_dev_get_first_match_dev()