search for: chip_id

Displaying 11 results from an estimated 11 matches for "chip_id".

2017 Dec 14
2
[bug report] null ptr deref in nouveau_platform_probe (tegra186-p2771-0000)
...x1a800027 [0001.580] I> Find /i2c at 3160000's alias i2c0 [0001.584] I> Reading eeprom i2c=0 address=0x50 [0001.589] I> Eeprom read failed 0x1a800027 [0001.594] I> Find /i2c at 3180000's alias i2c2 [0001.598] I> Reading eeprom i2c=2 address=0x54 [0001.602] I> Enabling gpio chip_id = 2, gpio pin = 9 [0001.633] I> Disabling gpio chip_id = 2, gpio pin = 9 [0001.638] I> Device at /i2c at 3180000:0x54 [0001.642] I> create_pm_ids: id: 3310-1000-B00-E, len: 15 [0001.647] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config...
2014 May 08
2
[PATCH] net: get rid of SET_ETHTOOL_OPS
...ivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, /* The Hamachi-specific entries in the device structure. */ dev->netdev_ops = &hamachi_netdev_ops; - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) - SET_ETHTOOL_OPS(dev, &ethtool_ops); - else - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? + &ethtool_ops : &ethtool_ops_no_mii; dev->watchdog_timeo = TX_TIMEOUT; if (mtu)...
2014 May 08
2
[PATCH] net: get rid of SET_ETHTOOL_OPS
...ivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, /* The Hamachi-specific entries in the device structure. */ dev->netdev_ops = &hamachi_netdev_ops; - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) - SET_ETHTOOL_OPS(dev, &ethtool_ops); - else - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? + &ethtool_ops : &ethtool_ops_no_mii; dev->watchdog_timeo = TX_TIMEOUT; if (mtu)...
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
...ivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, /* The Hamachi-specific entries in the device structure. */ dev->netdev_ops = &hamachi_netdev_ops; - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) - SET_ETHTOOL_OPS(dev, &ethtool_ops); - else - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? + &ethtool_ops : &ethtool_ops_no_mii; dev->watchdog_timeo = TX_TIMEOUT; if (mtu)...
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
...ivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, /* The Hamachi-specific entries in the device structure. */ dev->netdev_ops = &hamachi_netdev_ops; - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) - SET_ETHTOOL_OPS(dev, &ethtool_ops); - else - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? + &ethtool_ops : &ethtool_ops_no_mii; dev->watchdog_timeo = TX_TIMEOUT; if (mtu)...
2014 May 11
7
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
...ivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, /* The Hamachi-specific entries in the device structure. */ dev->netdev_ops = &hamachi_netdev_ops; - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) - SET_ETHTOOL_OPS(dev, &ethtool_ops); - else - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? + &ethtool_ops : &ethtool_ops_no_mii; dev->watchdog_timeo = TX_TIMEOUT; if (mtu)...
2014 May 08
0
[PATCH] net: get rid of SET_ETHTOOL_OPS
...; +++ b/drivers/net/ethernet/packetengines/hamachi.c > @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, > > /* The Hamachi-specific entries in the device structure. */ > dev->netdev_ops = &hamachi_netdev_ops; > - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) > - SET_ETHTOOL_OPS(dev, &ethtool_ops); > - else > - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); > + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? > + &ethtool_ops :...
2014 May 11
0
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
...; +++ b/drivers/net/ethernet/packetengines/hamachi.c > @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, > > /* The Hamachi-specific entries in the device structure. */ > dev->netdev_ops = &hamachi_netdev_ops; > - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) > - SET_ETHTOOL_OPS(dev, &ethtool_ops); > - else > - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); > + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? > + &ethtool_ops :...
2014 May 11
0
[PATCH] [resend] net: get rid of SET_ETHTOOL_OPS
...; +++ b/drivers/net/ethernet/packetengines/hamachi.c > @@ -724,10 +724,8 @@ static int hamachi_init_one(struct pci_dev *pdev, > > /* The Hamachi-specific entries in the device structure. */ > dev->netdev_ops = &hamachi_netdev_ops; > - if (chip_tbl[hmp->chip_id].flags & CanHaveMII) > - SET_ETHTOOL_OPS(dev, &ethtool_ops); > - else > - SET_ETHTOOL_OPS(dev, &ethtool_ops_no_mii); > + dev->ethtool_ops = (chip_tbl[hmp->chip_id].flags & CanHaveMII) ? > + &ethtool_ops :...
2017 Dec 21
2
[bug report] null ptr deref in nouveau_platform_probe (tegra186-p2771-0000)
...x1a800027 [0001.559] I> Find /i2c at 3160000's alias i2c0 [0001.563] I> Reading eeprom i2c=0 address=0x50 [0001.569] I> Eeprom read failed 0x1a800027 [0001.574] I> Find /i2c at 3180000's alias i2c2 [0001.578] I> Reading eeprom i2c=2 address=0x54 [0001.582] I> Enabling gpio chip_id = 2, gpio pin = 9 [0001.612] I> Disabling gpio chip_id = 2, gpio pin = 9 [0001.618] I> Device at /i2c at 3180000:0x54 [0001.621] I> create_pm_ids: id: 3310-1000-B00-E, len: 15 [0001.626] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config...
2017 Dec 21
1
[bug report] null ptr deref in nouveau_platform_probe (tegra186-p2771-0000)
...x1a800027 [0001.556] I> Find /i2c at 3160000's alias i2c0 [0001.560] I> Reading eeprom i2c=0 address=0x50 [0001.565] I> Eeprom read failed 0x1a800027 [0001.570] I> Find /i2c at 3180000's alias i2c2 [0001.574] I> Reading eeprom i2c=2 address=0x54 [0001.579] I> Enabling gpio chip_id = 2, gpio pin = 9 [0001.609] I> Disabling gpio chip_id = 2, gpio pin = 9 [0001.614] I> Device at /i2c at 3180000:0x54 [0001.618] I> create_pm_ids: id: 3310-1000-B00-E, len: 15 [0001.623] I> config: mem-type:00,power-config:00,misc-config:00,modem-config:00,touch-config:00,display-config...