ACPI / utils: Remove deprecated function since no user left
There is no more user of acpi_dev_get_first_match_name(), which is deprecated and has no user left, so, remove it for good. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
b664e6fe22
commit
257f9053c0
@ -835,22 +835,6 @@ acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(acpi_dev_get_first_match_dev);
|
EXPORT_SYMBOL(acpi_dev_get_first_match_dev);
|
||||||
|
|
||||||
/* DEPRECATED, use acpi_dev_get_first_match_dev() instead */
|
|
||||||
const char *
|
|
||||||
acpi_dev_get_first_match_name(const char *hid, const char *uid, s64 hrv)
|
|
||||||
{
|
|
||||||
struct acpi_dev_match_info match = {};
|
|
||||||
struct device *dev;
|
|
||||||
|
|
||||||
strlcpy(match.hid[0].id, hid, sizeof(match.hid[0].id));
|
|
||||||
match.uid = uid;
|
|
||||||
match.hrv = hrv;
|
|
||||||
|
|
||||||
dev = bus_find_device(&acpi_bus_type, NULL, &match, acpi_dev_match_cb);
|
|
||||||
return dev ? match.dev_name : NULL;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(acpi_dev_get_first_match_name);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* acpi_backlight= handling, this is done here rather then in video_detect.c
|
* acpi_backlight= handling, this is done here rather then in video_detect.c
|
||||||
* because __setup cannot be used in modules.
|
* because __setup cannot be used in modules.
|
||||||
|
@ -94,9 +94,6 @@ bool acpi_dev_present(const char *hid, const char *uid, s64 hrv);
|
|||||||
struct acpi_device *
|
struct acpi_device *
|
||||||
acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv);
|
acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv);
|
||||||
|
|
||||||
const char *
|
|
||||||
acpi_dev_get_first_match_name(const char *hid, const char *uid, s64 hrv);
|
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
|
|
||||||
#include <linux/proc_fs.h>
|
#include <linux/proc_fs.h>
|
||||||
|
@ -675,12 +675,6 @@ acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline const char *
|
|
||||||
acpi_dev_get_first_match_name(const char *hid, const char *uid, s64 hrv)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline bool is_acpi_node(struct fwnode_handle *fwnode)
|
static inline bool is_acpi_node(struct fwnode_handle *fwnode)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user