Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 224408
b: refs/heads/master
c: b16fed0
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and David S. Miller committed Nov 17, 2010
1 parent 3784061 commit 3018032
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4dd151876b6b81040121708ebc23c6cd1a3d5be8
refs/heads/master: b16fed0af8416ee0fe9af6c1977f7b05e7e7c9b2
8 changes: 4 additions & 4 deletions trunk/drivers/net/qlge/qlge_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3844,7 +3844,7 @@ static int ql_adapter_reset(struct ql_adapter *qdev)

static void ql_display_dev_info(struct net_device *ndev)
{
struct ql_adapter *qdev = (struct ql_adapter *)netdev_priv(ndev);
struct ql_adapter *qdev = netdev_priv(ndev);

netif_info(qdev, probe, qdev->ndev,
"Function #%d, Port %d, NIC Roll %d, NIC Rev = %d, "
Expand Down Expand Up @@ -4264,7 +4264,7 @@ static struct net_device_stats *qlge_get_stats(struct net_device

static void qlge_set_multicast_list(struct net_device *ndev)
{
struct ql_adapter *qdev = (struct ql_adapter *)netdev_priv(ndev);
struct ql_adapter *qdev = netdev_priv(ndev);
struct netdev_hw_addr *ha;
int i, status;

Expand Down Expand Up @@ -4354,7 +4354,7 @@ static void qlge_set_multicast_list(struct net_device *ndev)

static int qlge_set_mac_address(struct net_device *ndev, void *p)
{
struct ql_adapter *qdev = (struct ql_adapter *)netdev_priv(ndev);
struct ql_adapter *qdev = netdev_priv(ndev);
struct sockaddr *addr = p;
int status;

Expand All @@ -4377,7 +4377,7 @@ static int qlge_set_mac_address(struct net_device *ndev, void *p)

static void qlge_tx_timeout(struct net_device *ndev)
{
struct ql_adapter *qdev = (struct ql_adapter *)netdev_priv(ndev);
struct ql_adapter *qdev = netdev_priv(ndev);
ql_queue_asic_error(qdev);
}

Expand Down

0 comments on commit 3018032

Please sign in to comment.