2020-02-18 20:07:41

by Corentin LABBE

[permalink] [raw]
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 <[email protected]>
---
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


2020-03-15 01:36:56

by Dominik Brodowski

[permalink] [raw]
Subject: Re: [PATCH] pcmcia: omap: remove useless cast for driver.name

On Tue, Feb 18, 2020 at 08:07:16PM +0000, Corentin Labbe wrote:
> 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 <[email protected]>

Applied to pmcia-next.

Thanks,
Dominik