2022-12-21 07:34:01

by Lizhe

[permalink] [raw]
Subject: [PATCH] drivers/tcic.c : remove the "&" of the second parameter

The second parameter is the entry address of the function,
Not required&

Signed-off-by: lizhe <[email protected]>
---
drivers/pcmcia/tcic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pcmcia/tcic.c b/drivers/pcmcia/tcic.c
index 1a0e3f098759..5ef888688e23 100644
--- a/drivers/pcmcia/tcic.c
+++ b/drivers/pcmcia/tcic.c
@@ -435,7 +435,7 @@ static int __init init_tcic(void)
}

/* Set up polling */
- timer_setup(&poll_timer, &tcic_timer, 0);
+ timer_setup(&poll_timer, tcic_timer, 0);

/* Build interrupt mask */
printk(KERN_CONT ", %d sockets\n", sockets);
--
2.17.1


2023-09-05 16:04:45

by Dominik Brodowski

[permalink] [raw]
Subject: Re: [PATCH] drivers/tcic.c : remove the "&" of the second parameter

Am Tue, Dec 20, 2022 at 10:37:49PM -0800 schrieb lizhe:
> The second parameter is the entry address of the function,
> Not required&
>
> Signed-off-by: lizhe <[email protected]>
> ---
> drivers/pcmcia/tcic.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pcmcia/tcic.c b/drivers/pcmcia/tcic.c
> index 1a0e3f098759..5ef888688e23 100644
> --- a/drivers/pcmcia/tcic.c
> +++ b/drivers/pcmcia/tcic.c
> @@ -435,7 +435,7 @@ static int __init init_tcic(void)
> }
>
> /* Set up polling */
> - timer_setup(&poll_timer, &tcic_timer, 0);
> + timer_setup(&poll_timer, tcic_timer, 0);
>
> /* Build interrupt mask */
> printk(KERN_CONT ", %d sockets\n", sockets);
> --
> 2.17.1
>

Applied to pcmcia-next, thanks!

Dominik