From: Alexander Shiyan Date: Mon, 10 Mar 2014 10:57:33 +0000 (+0400) Subject: mfd: syscon: Simplify syscon_match_pdevname() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=416dc642afab52337d49d67170370b22b7057ab6;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mfd: syscon: Simplify syscon_match_pdevname() Since we do not want to add new platform IDs for the syscon driver, there is no reason to iterate over IDs. This patch simplifies syscon_match_pdevname() function to remove such iteration. Signed-off-by: Alexander Shiyan Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index 26200565d6ab..dbea55de4397 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -69,13 +69,6 @@ EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_compatible); static int syscon_match_pdevname(struct device *dev, void *data) { - struct platform_device *pdev = to_platform_device(dev); - const struct platform_device_id *id = platform_get_device_id(pdev); - - if (id) - if (!strcmp(id->name, (const char *)data)) - return 1; - return !strcmp(dev_name(dev), (const char *)data); }