Skip to content

Commit

Permalink
net: lan78xx: Make declaration style consistent
Browse files Browse the repository at this point in the history
This patch makes some declaration more consistent.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Reviewed-by: Raghuram Chary Jallipalli <raghuramchary.jallipalli@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Stefan Wahren authored and David S. Miller committed Sep 6, 2018
1 parent 6be665a commit 51ceac9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/net/usb/lan78xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ static int lan78xx_dataport_write(struct lan78xx_net *dev, u32 ram_select,
static void lan78xx_set_addr_filter(struct lan78xx_priv *pdata,
int index, u8 addr[ETH_ALEN])
{
u32 temp;
u32 temp;

if ((pdata) && (index > 0) && (index < NUM_OF_MAF)) {
temp = addr[3];
Expand Down Expand Up @@ -2690,7 +2690,7 @@ static void lan78xx_terminate_urbs(struct lan78xx_net *dev)

static int lan78xx_stop(struct net_device *net)
{
struct lan78xx_net *dev = netdev_priv(net);
struct lan78xx_net *dev = netdev_priv(net);

if (timer_pending(&dev->stat_monitor))
del_timer_sync(&dev->stat_monitor);
Expand Down Expand Up @@ -3073,7 +3073,7 @@ static void lan78xx_rx_vlan_offload(struct lan78xx_net *dev,

static void lan78xx_skb_return(struct lan78xx_net *dev, struct sk_buff *skb)
{
int status;
int status;

if (test_bit(EVENT_RX_PAUSED, &dev->flags)) {
skb_queue_tail(&dev->rxq_pause, skb);
Expand Down Expand Up @@ -3633,10 +3633,10 @@ static void intr_complete(struct urb *urb)

static void lan78xx_disconnect(struct usb_interface *intf)
{
struct lan78xx_net *dev;
struct usb_device *udev;
struct net_device *net;
struct phy_device *phydev;
struct lan78xx_net *dev;
struct usb_device *udev;
struct net_device *net;
struct phy_device *phydev;

dev = usb_get_intfdata(intf);
usb_set_intfdata(intf, NULL);
Expand Down

0 comments on commit 51ceac9

Please sign in to comment.