Lines Matching defs:hrv
853 s64 hrv;
860 unsigned long long hrv;
870 if (match->hrv == -1)
873 status = acpi_evaluate_integer(adev->handle, "_HRV", NULL, &hrv);
877 return hrv == match->hrv;
884 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
900 bool acpi_dev_present(const char *hid, const char *uid, s64 hrv)
907 match.hrv = hrv;
917 * @adev: Pointer to the previous ACPI device matching this @hid, @uid and @hrv
920 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
932 acpi_dev_get_next_match_dev(struct acpi_device *adev, const char *hid, const char *uid, s64 hrv)
940 match.hrv = hrv;
952 * @hrv: Hardware Revision of the device, pass -1 to not check _HRV
962 acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
964 return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv);