* [PATCH] zorro: Have zorro_bus_match() callback take a const *
@ 2024-07-10 7:45 Geert Uytterhoeven
2024-07-10 7:47 ` Greg Kroah-Hartman
0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2024-07-10 7:45 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-m68k, linux-kernel
drivers/zorro/zorro-driver.c:157:12: error: initialization of ‘int (*)(struct device *, const struct device_driver *)’ from incompatible pointer type ‘int (*)(struct device *, struct device_driver *)’ [-Werror=incompatible-pointer-types]
157 | .match = zorro_bus_match,
| ^~~~~~~~~~~~~~~
drivers/zorro/zorro-driver.c:157:12: note: (near initialization for ‘zorro_bus_type.match’)
Reported-by: noreply@ellerman.id.au
Fixes: d69d804845985c29 ("driver core: have match() callback in struct bus_type take a const *")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
drivers/zorro/zorro-driver.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/zorro/zorro-driver.c b/drivers/zorro/zorro-driver.c
index f49d19977e82a718..e7d3af1a223f9abf 100644
--- a/drivers/zorro/zorro-driver.c
+++ b/drivers/zorro/zorro-driver.c
@@ -118,10 +118,10 @@ EXPORT_SYMBOL(zorro_unregister_driver);
* supported, and 0 if there is no match.
*/
-static int zorro_bus_match(struct device *dev, struct device_driver *drv)
+static int zorro_bus_match(struct device *dev, const struct device_driver *drv)
{
struct zorro_dev *z = to_zorro_dev(dev);
- struct zorro_driver *zorro_drv = to_zorro_driver(drv);
+ const struct zorro_driver *zorro_drv = to_zorro_driver(drv);
const struct zorro_device_id *ids = zorro_drv->id_table;
if (!ids)
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] zorro: Have zorro_bus_match() callback take a const *
2024-07-10 7:45 [PATCH] zorro: Have zorro_bus_match() callback take a const * Geert Uytterhoeven
@ 2024-07-10 7:47 ` Greg Kroah-Hartman
0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2024-07-10 7:47 UTC (permalink / raw)
To: Geert Uytterhoeven; +Cc: linux-m68k, linux-kernel
On Wed, Jul 10, 2024 at 09:45:00AM +0200, Geert Uytterhoeven wrote:
> drivers/zorro/zorro-driver.c:157:12: error: initialization of ‘int (*)(struct device *, const struct device_driver *)’ from incompatible pointer type ‘int (*)(struct device *, struct device_driver *)’ [-Werror=incompatible-pointer-types]
> 157 | .match = zorro_bus_match,
> | ^~~~~~~~~~~~~~~
> drivers/zorro/zorro-driver.c:157:12: note: (near initialization for ‘zorro_bus_type.match’)
>
> Reported-by: noreply@ellerman.id.au
> Fixes: d69d804845985c29 ("driver core: have match() callback in struct bus_type take a const *")
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
> drivers/zorro/zorro-driver.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/zorro/zorro-driver.c b/drivers/zorro/zorro-driver.c
> index f49d19977e82a718..e7d3af1a223f9abf 100644
> --- a/drivers/zorro/zorro-driver.c
> +++ b/drivers/zorro/zorro-driver.c
> @@ -118,10 +118,10 @@ EXPORT_SYMBOL(zorro_unregister_driver);
> * supported, and 0 if there is no match.
> */
>
> -static int zorro_bus_match(struct device *dev, struct device_driver *drv)
> +static int zorro_bus_match(struct device *dev, const struct device_driver *drv)
> {
> struct zorro_dev *z = to_zorro_dev(dev);
> - struct zorro_driver *zorro_drv = to_zorro_driver(drv);
> + const struct zorro_driver *zorro_drv = to_zorro_driver(drv);
Patches crossed in the mail :)
Look at mine, I also fixed up to_zorro_driver() to properly pass through
the const pointer which would be good here.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-10 7:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-10 7:45 [PATCH] zorro: Have zorro_bus_match() callback take a const * Geert Uytterhoeven
2024-07-10 7:47 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox