On 11/22/2013 10:07 PM, Guenter Roeck wrote:
> Use new hwmon API to simplify code, provide missing mandatory 'name'
> sysfs attribute, and attach hwmon attributes to hwmon device instead
> of pci device.
>
> Signed-off-by: Guenter Roeck <li...@roeck-us.net>
> ---
>   drivers/net/ethernet/broadcom/tg3.c |   25 ++++++-------------------
>   1 file changed, 6 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/net/ethernet/broadcom/tg3.c 
> b/drivers/net/ethernet/broadcom/tg3.c
> index a9e0684..369b736 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -10629,10 +10629,8 @@ static void tg3_sd_scan_scratchpad(struct tg3 *tp, 
> struct tg3_ocir *ocir)
>   static ssize_t tg3_show_temp(struct device *dev,
>                            struct device_attribute *devattr, char *buf)
>   {
> -     struct pci_dev *pdev = to_pci_dev(dev);
> -     struct net_device *netdev = pci_get_drvdata(pdev);
> -     struct tg3 *tp = netdev_priv(netdev);
>       struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
> +     struct tg3 *tp = dev_get_drvdata(dev);


Shouldn't this be
struct tg3 *tp = netdev_priv(dev_get_drvdata(dev));




------------------------------------------------------------------------------
Shape the Mobile Experience: Free Subscription
Software experts and developers: Be at the forefront of tech innovation.
Intel(R) Software Adrenaline delivers strategic insight and game-changing 
conversations that shape the rapidly evolving mobile landscape. Sign up now. 
http://pubads.g.doubleclick.net/gampad/clk?id=63431311&iu=/4140/ostg.clktrk
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel&#174; Ethernet, visit 
http://communities.intel.com/community/wired

Reply via email to