diff options
author | Zijun Hu <quic_zijuhu@quicinc.com> | 2024-07-25 23:40:55 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-31 14:55:13 +0200 |
commit | 0314647dec70bf0e856303dc70d00e9f1ba568ba (patch) | |
tree | ca8cb1931c69ddad86c1eb302b074307c1938dcf /drivers/base/base.h | |
parent | c0fd973c108cdc22a384854bc4b3e288a9717bb2 (diff) | |
download | lwn-0314647dec70bf0e856303dc70d00e9f1ba568ba.tar.gz lwn-0314647dec70bf0e856303dc70d00e9f1ba568ba.zip |
driver core: Remove unused parameter for virtual_device_parent()
Function struct kobject *virtual_device_parent(struct device *dev)
does not use its parameter @dev, and the kobject returned also has
nothing deal with specific device, so remove the unused parameter.
Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
Link: https://lore.kernel.org/r/20240725-virtual_kobj_fix-v1-1-36335cae4544@quicinc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/base.h')
-rw-r--r-- | drivers/base/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h index 0b53593372d7..8cf04a557bdb 100644 --- a/drivers/base/base.h +++ b/drivers/base/base.h @@ -145,7 +145,7 @@ void auxiliary_bus_init(void); static inline void auxiliary_bus_init(void) { } #endif -struct kobject *virtual_device_parent(struct device *dev); +struct kobject *virtual_device_parent(void); int bus_add_device(struct device *dev); void bus_probe_device(struct device *dev); |