[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1582056436-15775-1-git-send-email-clabbe@baylibre.com>
Date: Tue, 18 Feb 2020 20:07:16 +0000
From: Corentin Labbe <clabbe@...libre.com>
To: linux@...inikbrodowski.net
Cc: linux-kernel@...r.kernel.org, Corentin Labbe <clabbe@...libre.com>
Subject: [PATCH] pcmcia: omap: remove useless cast for driver.name
device_driver name is const char pointer, so it not useful to cast
driver_name (which is already const char).
Signed-off-by: Corentin Labbe <clabbe@...libre.com>
---
drivers/pcmcia/omap_cf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pcmcia/omap_cf.c b/drivers/pcmcia/omap_cf.c
index 0a04eb04f3a2..d3ef5534991e 100644
--- a/drivers/pcmcia/omap_cf.c
+++ b/drivers/pcmcia/omap_cf.c
@@ -329,7 +329,7 @@ static int __exit omap_cf_remove(struct platform_device *pdev)
static struct platform_driver omap_cf_driver = {
.driver = {
- .name = (char *) driver_name,
+ .name = driver_name,
},
.remove = __exit_p(omap_cf_remove),
};
--
2.24.1
Powered by blists - more mailing lists