Lines Matching full:hrv
910 s64 hrv; member
917 unsigned long long hrv; in acpi_dev_match_cb() local
926 if (match->hrv == -1) in acpi_dev_match_cb()
929 status = acpi_evaluate_integer(adev->handle, "_HRV", NULL, &hrv); in acpi_dev_match_cb()
933 return hrv == match->hrv; in acpi_dev_match_cb()
940 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
956 bool acpi_dev_present(const char *hid, const char *uid, s64 hrv) in acpi_dev_present() argument
963 match.hrv = hrv; in acpi_dev_present()
973 * @adev: Pointer to the previous ACPI device matching this @hid, @uid and @hrv
976 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
988 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
996 match.hrv = hrv; in acpi_dev_get_next_match_dev()
1008 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
1018 acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv) in acpi_dev_get_first_match_dev() argument
1020 return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv); in acpi_dev_get_first_match_dev()