mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
reset: Use device_get_match_data()
Use preferred device_get_match_data() instead of of_match_device() to get the driver match data. With this, adjust the includes to explicitly include the correct headers. Signed-off-by: Rob Herring <robh@kernel.org> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com> Link: https://lore.kernel.org/r/20231115205848.3732609-1-robh@kernel.org Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
This commit is contained in:
parent
41df5d7d5e
commit
c1d884118f
@ -6,8 +6,8 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/property.h>
|
||||
#include <linux/reboot.h>
|
||||
#include <linux/reset-controller.h>
|
||||
#include <linux/spinlock.h>
|
||||
@ -351,8 +351,7 @@ static int npcm_usb_reset(struct platform_device *pdev, struct npcm_rc_data *rc)
|
||||
}
|
||||
}
|
||||
|
||||
rc->info = (const struct npcm_reset_info *)
|
||||
of_match_device(dev->driver->of_match_table, dev)->data;
|
||||
rc->info = device_get_match_data(dev);
|
||||
switch (rc->info->bmc_id) {
|
||||
case BMC_NPCM7XX:
|
||||
npcm_usb_reset_npcm7xx(rc);
|
||||
|
@ -7,10 +7,11 @@
|
||||
*/
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/property.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/mfd/syscon.h>
|
||||
|
||||
@ -183,14 +184,14 @@ static int syscfg_reset_controller_register(struct device *dev,
|
||||
int syscfg_reset_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = pdev ? &pdev->dev : NULL;
|
||||
const struct of_device_id *match;
|
||||
const void *data;
|
||||
|
||||
if (!dev || !dev->driver)
|
||||
return -ENODEV;
|
||||
|
||||
match = of_match_device(dev->driver->of_match_table, dev);
|
||||
if (!match || !match->data)
|
||||
data = device_get_match_data(&pdev->dev);
|
||||
if (!data)
|
||||
return -EINVAL;
|
||||
|
||||
return syscfg_reset_controller_register(dev, match->data);
|
||||
return syscfg_reset_controller_register(dev, data);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user