lkml.org 
[lkml]   [2014]   [Jul]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 14/25] adm8211: Replace DEFINE_PCI_DEVICE_TABLE macro use
    Date
    We should prefer `struct pci_device_id` over `DEFINE_PCI_DEVICE_TABLE` to meet
    kernel coding style guidelines. This issue was reported by checkpatch.

    Signed-off-by: Benoit Taine <benoit.taine@lip6.fr>

    ---
    Tested by compilation without errors.

    drivers/net/wireless/adm8211.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/net/wireless/adm8211.c b/drivers/net/wireless/adm8211.c
    index f35f93c..17fcaab 100644
    --- a/drivers/net/wireless/adm8211.c
    +++ b/drivers/net/wireless/adm8211.c
    @@ -41,7 +41,7 @@ static unsigned int rx_ring_size __read_mostly = 16;
    module_param(tx_ring_size, uint, 0);
    module_param(rx_ring_size, uint, 0);

    -static DEFINE_PCI_DEVICE_TABLE(adm8211_pci_id_table) = {
    +static const struct pci_device_id adm8211_pci_id_table[] = {
    /* ADMtek ADM8211 */
    { PCI_DEVICE(0x10B7, 0x6000) }, /* 3Com 3CRSHPW796 */
    { PCI_DEVICE(0x1200, 0x8201) }, /* ? */


    \
     
     \ /
      Last update: 2014-07-18 18:21    [W:4.452 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site