Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341811
b: refs/heads/master
c: 76e239e
h: refs/heads/master
i:
  341809: e6b9163
  341807: cd22752
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent a9dd234 commit 01081f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: b38d13066020a5390b59d1b740b7985d548bfb5b
refs/heads/master: 76e239e1fa66eab1cb5b80a86d4803dc839bbc8f
12 changes: 6 additions & 6 deletions trunk/drivers/net/ethernet/via/via-rhine.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static const int multicast_filter_limit = 32;
#include <linux/dmi.h>

/* These identify the driver base version and may not be removed. */
static const char version[] __devinitconst =
static const char version[] =
"v1.10-LK" DRV_VERSION " " DRV_RELDATE " Written by Donald Becker";

/* This driver was written to use PCI memory space. Some early versions
Expand Down Expand Up @@ -657,7 +657,7 @@ static void enable_mmio(long pioaddr, u32 quirks)
* Loads bytes 0x00-0x05, 0x6E-0x6F, 0x78-0x7B from EEPROM
* (plus 0x6C for Rhine-I/II)
*/
static void __devinit rhine_reload_eeprom(long pioaddr, struct net_device *dev)
static void rhine_reload_eeprom(long pioaddr, struct net_device *dev)
{
struct rhine_private *rp = netdev_priv(dev);
void __iomem *ioaddr = rp->base;
Expand Down Expand Up @@ -823,7 +823,7 @@ static int rhine_napipoll(struct napi_struct *napi, int budget)
return work_done;
}

static void __devinit rhine_hw_init(struct net_device *dev, long pioaddr)
static void rhine_hw_init(struct net_device *dev, long pioaddr)
{
struct rhine_private *rp = netdev_priv(dev);

Expand Down Expand Up @@ -856,7 +856,7 @@ static const struct net_device_ops rhine_netdev_ops = {
#endif
};

static int __devinit rhine_init_one(struct pci_dev *pdev,
static int rhine_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct net_device *dev;
Expand Down Expand Up @@ -2232,7 +2232,7 @@ static int rhine_close(struct net_device *dev)
}


static void __devexit rhine_remove_one(struct pci_dev *pdev)
static void rhine_remove_one(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
struct rhine_private *rp = netdev_priv(dev);
Expand Down Expand Up @@ -2359,7 +2359,7 @@ static struct pci_driver rhine_driver = {
.name = DRV_NAME,
.id_table = rhine_pci_tbl,
.probe = rhine_init_one,
.remove = __devexit_p(rhine_remove_one),
.remove = rhine_remove_one,
.shutdown = rhine_shutdown,
.driver.pm = RHINE_PM_OPS,
};
Expand Down

0 comments on commit 01081f7

Please sign in to comment.