lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 28 Nov 2023 00:54:34 +0100
From:   Andi Shyti <andi.shyti@...nel.org>
To:     Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc:     Mario Limonciello <mario.limonciello@....com>,
        Jarkko Nikula <jarkko.nikula@...ux.intel.com>,
        Herbert Xu <herbert@...dor.apana.org.au>,
        Wolfram Sang <wsa@...nel.org>, linux-i2c@...r.kernel.org,
        linux-kernel@...r.kernel.org,
        Mika Westerberg <mika.westerberg@...ux.intel.com>,
        Jan Dabros <jsd@...ihalf.com>,
        Philipp Zabel <p.zabel@...gutronix.de>
Subject: Re: [PATCH v4 07/24] i2c: designware: Add missing 'c' into PCI IDs
 variable name

Hi Andy,

On Mon, Nov 20, 2023 at 04:41:49PM +0200, Andy Shevchenko wrote:
> Add missing 'c' into i2c_designware_pci_ids variable name.
> 
> Acked-by: Jarkko Nikula <jarkko.nikula@...ux.intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> ---
>  drivers/i2c/busses/i2c-designware-pcidrv.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-designware-pcidrv.c b/drivers/i2c/busses/i2c-designware-pcidrv.c
> index e67956845c19..ed2f9e7ba5d3 100644
> --- a/drivers/i2c/busses/i2c-designware-pcidrv.c
> +++ b/drivers/i2c/busses/i2c-designware-pcidrv.c
> @@ -355,7 +355,7 @@ static void i2c_dw_pci_remove(struct pci_dev *pdev)
>  	i2c_del_adapter(&dev->adapter);
>  }
>  
> -static const struct pci_device_id i2_designware_pci_ids[] = {
> +static const struct pci_device_id i2c_designware_pci_ids[] = {
>  	/* Medfield */
>  	{ PCI_VDEVICE(INTEL, 0x0817), medfield },
>  	{ PCI_VDEVICE(INTEL, 0x0818), medfield },
> @@ -403,16 +403,16 @@ static const struct pci_device_id i2_designware_pci_ids[] = {
>  	{ PCI_VDEVICE(ATI,  0x7464), navi_amd },
>  	{ 0,}
>  };
> -MODULE_DEVICE_TABLE(pci, i2_designware_pci_ids);
> +MODULE_DEVICE_TABLE(pci, i2c_designware_pci_ids);
>  
>  static struct pci_driver dw_i2c_driver = {
>  	.name		= DRIVER_NAME,
> -	.id_table	= i2_designware_pci_ids,
>  	.probe		= i2c_dw_pci_probe,
>  	.remove		= i2c_dw_pci_remove,
>  	.driver         = {
>  		.pm     = &i2c_dw_pm_ops,
>  	},
> +	.id_table	= i2c_designware_pci_ids,

why this change?

Thanks,
Andi

>  };
>  module_pci_driver(dw_i2c_driver);
>  
> -- 
> 2.43.0.rc1.1.gbec44491f096
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ