driver_find_device: Unify the match function with class_find_device()
authorSuzuki K Poulose <suzuki.poulose@arm.com>
Fri, 14 Jun 2019 17:54:00 +0000 (18:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jun 2019 03:22:31 +0000 (05:22 +0200)
The driver_find_device() accepts a match function pointer to
filter the devices for lookup, similar to bus/class_find_device().
However, there is a minor difference in the prototype for the
match parameter for driver_find_device() with the now unified
version accepted by {bus/class}_find_device(), where it doesn't
accept a "const" qualifier for the data argument. This prevents
us from reusing the generic match functions for driver_find_device().

For this reason, change the prototype of the driver_find_device() to
make the "match" parameter in line with {bus/class}_find_device()
and adjust its callers to use the const qualifier. Also, we could
now promote the "data" parameter to const as we pass it down
as a const parameter to the match functions.

Cc: Corey Minyard <minyard@acm.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Peter Oberparleiter <oberpar@linux.ibm.com>
Cc: Sebastian Ott <sebott@linux.ibm.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Nehal Shah <nehal-bakulchandra.shah@amd.com>
Cc: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12 files changed:
drivers/amba/tegra-ahb.c
drivers/base/driver.c
drivers/char/ipmi/ipmi_msghandler.c
drivers/gpu/drm/tegra/dc.c
drivers/i2c/busses/i2c-amd-mp2-pci.c
drivers/iommu/arm-smmu-v3.c
drivers/iommu/arm-smmu.c
drivers/mfd/altera-sysmgr.c
drivers/s390/cio/ccwgroup.c
drivers/s390/cio/chsc_sch.c
drivers/s390/cio/device.c
include/linux/device.h

index 3751d811be39b4790fa47a3c4ef4537f115accba..42175a67ba0eb26cf1e4814e9813f8d03922c35d 100644 (file)
@@ -143,10 +143,10 @@ static inline void gizmo_writel(struct tegra_ahb *ahb, u32 value, u32 offset)
 }
 
 #ifdef CONFIG_TEGRA_IOMMU_SMMU
-static int tegra_ahb_match_by_smmu(struct device *dev, void *data)
+static int tegra_ahb_match_by_smmu(struct device *dev, const void *data)
 {
        struct tegra_ahb *ahb = dev_get_drvdata(dev);
-       struct device_node *dn = data;
+       const struct device_node *dn = data;
 
        return (ahb->dev->of_node == dn) ? 1 : 0;
 }
index 857c8f1b876e565a5f7d1130a10351880b8ecd51..4e5ca632f35e8f12c2a01f83b9cfc58550f1d359 100644 (file)
@@ -73,8 +73,8 @@ EXPORT_SYMBOL_GPL(driver_for_each_device);
  * return to the caller and not iterate over any more devices.
  */
 struct device *driver_find_device(struct device_driver *drv,
-                                 struct device *start, void *data,
-                                 int (*match)(struct device *dev, void *data))
+                                 struct device *start, const void *data,
+                                 int (*match)(struct device *dev, const void *data))
 {
        struct klist_iter i;
        struct device *dev;
index 1dc10740fc0f7ca12ca7f0184c3993960de5f4de..6707659cffd6eeed6df70f88852f3485c301a081 100644 (file)
@@ -2819,9 +2819,9 @@ static const struct device_type bmc_device_type = {
        .groups         = bmc_dev_attr_groups,
 };
 
-static int __find_bmc_guid(struct device *dev, void *data)
+static int __find_bmc_guid(struct device *dev, const void *data)
 {
-       guid_t *guid = data;
+       const guid_t *guid = data;
        struct bmc_device *bmc;
        int rv;
 
@@ -2857,9 +2857,9 @@ struct prod_dev_id {
        unsigned char device_id;
 };
 
-static int __find_bmc_prod_dev_id(struct device *dev, void *data)
+static int __find_bmc_prod_dev_id(struct device *dev, const void *data)
 {
-       struct prod_dev_id *cid = data;
+       const struct prod_dev_id *cid = data;
        struct bmc_device *bmc;
        int rv;
 
index 607a6ea17ecc534b0f8433b63fff0383f1bde190..52109a63e7976a19ba24a2d7a4af59d79665cbbc 100644 (file)
@@ -2375,10 +2375,10 @@ static int tegra_dc_parse_dt(struct tegra_dc *dc)
        return 0;
 }
 
-static int tegra_dc_match_by_pipe(struct device *dev, void *data)
+static int tegra_dc_match_by_pipe(struct device *dev, const void *data)
 {
        struct tegra_dc *dc = dev_get_drvdata(dev);
-       unsigned int pipe = (unsigned long)data;
+       unsigned int pipe = (unsigned long)(void *)data;
 
        return dc->pipe == pipe;
 }
index 455e1f36a2a3deb869247173d8c3d9bd3808187e..c7fe3b44a860174a936665fbf0e1dfc628f4466a 100644 (file)
@@ -457,7 +457,7 @@ static struct pci_driver amd_mp2_pci_driver = {
 };
 module_pci_driver(amd_mp2_pci_driver);
 
-static int amd_mp2_device_match(struct device *dev, void *data)
+static int amd_mp2_device_match(struct device *dev, const void *data)
 {
        return 1;
 }
index 4d5a694f02c2bb3159d2e7119a474e35fc384a96..d787856f9dcf91bc6935c99faa9fbf05a05033f0 100644 (file)
@@ -2023,7 +2023,7 @@ arm_smmu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
 
 static struct platform_driver arm_smmu_driver;
 
-static int arm_smmu_match_node(struct device *dev, void *data)
+static int arm_smmu_match_node(struct device *dev, const void *data)
 {
        return dev->fwnode == data;
 }
index 5e54cc0a28b30516b65c2516c666ee3d9c398141..4ce429b74655fed0fa786e6cee5dd929e9a35481 100644 (file)
@@ -1431,7 +1431,7 @@ static bool arm_smmu_capable(enum iommu_cap cap)
        }
 }
 
-static int arm_smmu_match_node(struct device *dev, void *data)
+static int arm_smmu_match_node(struct device *dev, const void *data)
 {
        return dev->fwnode == data;
 }
index 8976f82785bb8850a352c2af5468daacb99e8484..2ee14d8a6d318f4ed77bc8155b192067c3441c91 100644 (file)
@@ -92,9 +92,9 @@ static struct regmap_config altr_sysmgr_regmap_cfg = {
  * Matching function used by driver_find_device().
  * Return: True if match is found, otherwise false.
  */
-static int sysmgr_match_phandle(struct device *dev, void *data)
+static int sysmgr_match_phandle(struct device *dev, const void *data)
 {
-       return dev->of_node == (struct device_node *)data;
+       return dev->of_node == (const struct device_node *)data;
 }
 
 /**
index 4ebf6d4fc66cbed6d7493892620e3a78a55040cb..ea17615789c977aed4feac0310e92b6481d6a400 100644 (file)
@@ -581,7 +581,7 @@ int ccwgroup_driver_register(struct ccwgroup_driver *cdriver)
 }
 EXPORT_SYMBOL(ccwgroup_driver_register);
 
-static int __ccwgroup_match_all(struct device *dev, void *data)
+static int __ccwgroup_match_all(struct device *dev, const void *data)
 {
        return 1;
 }
@@ -608,7 +608,7 @@ void ccwgroup_driver_unregister(struct ccwgroup_driver *cdriver)
 }
 EXPORT_SYMBOL(ccwgroup_driver_unregister);
 
-static int __ccwgroupdev_check_busid(struct device *dev, void *id)
+static int __ccwgroupdev_check_busid(struct device *dev, const void *id)
 {
        char *bus_id = id;
 
index 8d9f36625ba5eb2efed79a4e2d8485a16db4ce29..8f080d3fd380542434e1d54ec22227bf28c7a836 100644 (file)
@@ -203,7 +203,7 @@ static void chsc_cleanup_sch_driver(void)
 
 static DEFINE_SPINLOCK(chsc_lock);
 
-static int chsc_subchannel_match_next_free(struct device *dev, void *data)
+static int chsc_subchannel_match_next_free(struct device *dev, const void *data)
 {
        struct subchannel *sch = to_subchannel(dev);
 
index d32f373e5bc79cc79421e4098f6d47f7784945a2..f27536ba58eb4cebc9b495de9df1df350c8f20df 100644 (file)
@@ -1653,7 +1653,7 @@ EXPORT_SYMBOL_GPL(ccw_device_force_console);
  * get ccw_device matching the busid, but only if owned by cdrv
  */
 static int
-__ccwdev_check_busid(struct device *dev, void *id)
+__ccwdev_check_busid(struct device *dev, const void *id)
 {
        char *bus_id;
 
index cbbdcadc660e8d0eb1597e910474cb01181701a8..4d7c88131a4da701782f7793c159f19aff69d44a 100644 (file)
@@ -336,8 +336,8 @@ extern int __must_check driver_for_each_device(struct device_driver *drv,
                                               int (*fn)(struct device *dev,
                                                         void *));
 struct device *driver_find_device(struct device_driver *drv,
-                                 struct device *start, void *data,
-                                 int (*match)(struct device *dev, void *data));
+                                 struct device *start, const void *data,
+                                 int (*match)(struct device *dev, const void *data));
 
 void driver_deferred_probe_add(struct device *dev);
 int driver_deferred_probe_check_state(struct device *dev);