]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: gpib: Avoid unused variable warning
authorDave Penkler <dpenkler@gmail.com>
Fri, 2 May 2025 07:21:50 +0000 (09:21 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 May 2025 11:44:46 +0000 (13:44 +0200)
This addresses a warning produced by make W=1 with the configuration
parameter CONFIG_GPIB_PCMCIA=y

ines/ines_gpib.c:1115:28: warning: variable 'dev' set but not used [-Wunused-but-set-variable]

Remove the declaration and assignment of the unused variable.

Signed-off-by: Dave Penkler <dpenkler@gmail.com>
Link: https://lore.kernel.org/r/20250502072150.32714-4-dpenkler@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gpib/ines/ines_gpib.c

index a16219c0f7c83217719fcf0359a7000961fcb1db..c851fd014f487c0a75a3e398b2cc567b37b69535 100644 (file)
@@ -1112,12 +1112,9 @@ static int ines_gpib_config_iteration(struct pcmcia_device *link, void *priv_dat
  */
 static int ines_gpib_config(struct pcmcia_device *link)
 {
-       struct local_info *dev;
        int retval;
        void __iomem *virt;
 
-       dev = link->priv;
-
        retval = pcmcia_loop_config(link, &ines_gpib_config_iteration, NULL);
        if (retval) {
                dev_warn(&link->dev, "no configuration found\n");