mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
of: Move of_device_get_match_data() declaration
of_device.h mostly defines functions for bus drivers whereas of_device_get_match_data() is used by drivers. Let's move it to of.h. Link: https://lore.kernel.org/r/20230329-dt-cpu-header-cleanups-v1-3-581e2605fe47@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
@@ -26,8 +26,6 @@ static inline int of_driver_match_device(struct device *dev,
|
||||
return of_match_device(drv->of_match_table, dev) != NULL;
|
||||
}
|
||||
|
||||
extern const void *of_device_get_match_data(const struct device *dev);
|
||||
|
||||
extern ssize_t of_device_modalias(struct device *dev, char *str, ssize_t len);
|
||||
extern int of_device_request_module(struct device *dev);
|
||||
|
||||
@@ -63,11 +61,6 @@ static inline int of_driver_match_device(struct device *dev,
|
||||
static inline void of_device_uevent(const struct device *dev,
|
||||
struct kobj_uevent_env *env) { }
|
||||
|
||||
static inline const void *of_device_get_match_data(const struct device *dev)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline int of_device_modalias(struct device *dev,
|
||||
char *str, ssize_t len)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user