Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268774
b: refs/heads/master
c: 6617c36
h: refs/heads/master
v: v3
  • Loading branch information
Mark Einon authored and Greg Kroah-Hartman committed Oct 11, 2011
1 parent 0b0ab90 commit f89521c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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: b6f4160c4e5a1565fbb06976233e6482c16a489c
refs/heads/master: 6617c3698778ae896deb89804f7ba8efb4d2252d
2 changes: 1 addition & 1 deletion trunk/drivers/staging/et131x/et1310_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ void et1310_config_rxmac_regs(struct et131x_adapter *adapter)

void et1310_config_txmac_regs(struct et131x_adapter *adapter)
{
struct txmac_regs *txmac = &adapter->regs->txmac;
struct txmac_regs __iomem *txmac = &adapter->regs->txmac;

/* We need to update the Control Frame Parameters
* cfpt - control frame pause timer set to 64 (0x40)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/et131x/et131x_initpci.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ static void et131x_adjust_link(struct net_device *netdev)
}
}

int et131x_mii_probe(struct net_device *netdev)
static int et131x_mii_probe(struct net_device *netdev)
{
struct et131x_adapter *adapter = netdev_priv(netdev);
struct phy_device *phydev = NULL;
Expand Down
14 changes: 7 additions & 7 deletions trunk/drivers/staging/et131x/et131x_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ int et131x_close(struct net_device *netdev)
*
* Returns 0 on success, errno on failure (as defined in errno.h)
*/
int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
static int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
{
struct et131x_adapter *adapter = netdev_priv(netdev);

Expand All @@ -282,7 +282,7 @@ int et131x_ioctl(struct net_device *netdev, struct ifreq *reqbuf, int cmd)
*
* Returns 0 on success, errno on failure
*/
int et131x_set_packet_filter(struct et131x_adapter *adapter)
static int et131x_set_packet_filter(struct et131x_adapter *adapter)
{
int status = 0;
uint32_t filter = adapter->packet_filter;
Expand Down Expand Up @@ -344,7 +344,7 @@ int et131x_set_packet_filter(struct et131x_adapter *adapter)
* et131x_multicast - The handler to configure multicasting on the interface
* @netdev: a pointer to a net_device struct representing the device
*/
void et131x_multicast(struct net_device *netdev)
static void et131x_multicast(struct net_device *netdev)
{
struct et131x_adapter *adapter = netdev_priv(netdev);
uint32_t packet_filter = 0;
Expand Down Expand Up @@ -417,7 +417,7 @@ void et131x_multicast(struct net_device *netdev)
*
* Returns 0 on success, errno on failure (as defined in errno.h)
*/
int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
static int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
{
int status = 0;

Expand Down Expand Up @@ -450,7 +450,7 @@ int et131x_tx(struct sk_buff *skb, struct net_device *netdev)
* specified by the 'tx_timeo" element in the net_device structure (see
* et131x_alloc_device() to see how this value is set).
*/
void et131x_tx_timeout(struct net_device *netdev)
static void et131x_tx_timeout(struct net_device *netdev)
{
struct et131x_adapter *adapter = netdev_priv(netdev);
struct tcb *tcb;
Expand Down Expand Up @@ -508,7 +508,7 @@ void et131x_tx_timeout(struct net_device *netdev)
*
* Returns 0 on success, errno on failure (as defined in errno.h)
*/
int et131x_change_mtu(struct net_device *netdev, int new_mtu)
static int et131x_change_mtu(struct net_device *netdev, int new_mtu)
{
int result = 0;
struct et131x_adapter *adapter = netdev_priv(netdev);
Expand Down Expand Up @@ -561,7 +561,7 @@ int et131x_change_mtu(struct net_device *netdev, int new_mtu)
*
* IMPLEMENTED BY : blux http://berndlux.de 22.01.2007 21:14
*/
int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
static int et131x_set_mac_addr(struct net_device *netdev, void *new_mac)
{
int result = 0;
struct et131x_adapter *adapter = netdev_priv(netdev);
Expand Down

0 comments on commit f89521c

Please sign in to comment.