Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341777
b: refs/heads/master
c: 853e3f4
h: refs/heads/master
i:
  341775: d193dc2
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent ffc678c commit 308fb07
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 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: fe17dc1e2bae8599aa034e678f7bbfd1f98e5a15
refs/heads/master: 853e3f4c5f49e51c904dab0d25eda82a92f1341f
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/marvell/skge.c
Original file line number Diff line number Diff line change
Expand Up @@ -3860,7 +3860,7 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port,
return dev;
}

static void __devinit skge_show_addr(struct net_device *dev)
static void skge_show_addr(struct net_device *dev)
{
const struct skge_port *skge = netdev_priv(dev);

Expand All @@ -3869,7 +3869,7 @@ static void __devinit skge_show_addr(struct net_device *dev)

static int only_32bit_dma;

static int __devinit skge_probe(struct pci_dev *pdev,
static int skge_probe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct net_device *dev, *dev1;
Expand Down Expand Up @@ -4012,7 +4012,7 @@ static int __devinit skge_probe(struct pci_dev *pdev,
return err;
}

static void __devexit skge_remove(struct pci_dev *pdev)
static void skge_remove(struct pci_dev *pdev)
{
struct skge_hw *hw = pci_get_drvdata(pdev);
struct net_device *dev0, *dev1;
Expand Down Expand Up @@ -4142,7 +4142,7 @@ static struct pci_driver skge_driver = {
.name = DRV_NAME,
.id_table = skge_id_table,
.probe = skge_probe,
.remove = __devexit_p(skge_remove),
.remove = skge_remove,
.shutdown = skge_shutdown,
.driver.pm = SKGE_PM_OPS,
};
Expand Down
16 changes: 8 additions & 8 deletions trunk/drivers/net/ethernet/marvell/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -3140,7 +3140,7 @@ static inline u32 sky2_clk2us(const struct sky2_hw *hw, u32 clk)
}


static int __devinit sky2_init(struct sky2_hw *hw)
static int sky2_init(struct sky2_hw *hw)
{
u8 t8;

Expand Down Expand Up @@ -4741,7 +4741,7 @@ static const struct net_device_ops sky2_netdev_ops[2] = {
};

/* Initialize network device */
static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
static struct net_device *sky2_init_netdev(struct sky2_hw *hw,
unsigned port,
int highmem, int wol)
{
Expand Down Expand Up @@ -4807,15 +4807,15 @@ static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
return dev;
}

static void __devinit sky2_show_addr(struct net_device *dev)
static void sky2_show_addr(struct net_device *dev)
{
const struct sky2_port *sky2 = netdev_priv(dev);

netif_info(sky2, probe, dev, "addr %pM\n", dev->dev_addr);
}

/* Handle software interrupt used during MSI test */
static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
static irqreturn_t sky2_test_intr(int irq, void *dev_id)
{
struct sky2_hw *hw = dev_id;
u32 status = sky2_read32(hw, B0_Y2_SP_ISRC2);
Expand All @@ -4834,7 +4834,7 @@ static irqreturn_t __devinit sky2_test_intr(int irq, void *dev_id)
}

/* Test interrupt path by forcing a a software IRQ */
static int __devinit sky2_test_msi(struct sky2_hw *hw)
static int sky2_test_msi(struct sky2_hw *hw)
{
struct pci_dev *pdev = hw->pdev;
int err;
Expand Down Expand Up @@ -4896,7 +4896,7 @@ static const char *sky2_name(u8 chipid, char *buf, int sz)
return buf;
}

static int __devinit sky2_probe(struct pci_dev *pdev,
static int sky2_probe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct net_device *dev, *dev1;
Expand Down Expand Up @@ -5086,7 +5086,7 @@ static int __devinit sky2_probe(struct pci_dev *pdev,
return err;
}

static void __devexit sky2_remove(struct pci_dev *pdev)
static void sky2_remove(struct pci_dev *pdev)
{
struct sky2_hw *hw = pci_get_drvdata(pdev);
int i;
Expand Down Expand Up @@ -5207,7 +5207,7 @@ static struct pci_driver sky2_driver = {
.name = DRV_NAME,
.id_table = sky2_id_table,
.probe = sky2_probe,
.remove = __devexit_p(sky2_remove),
.remove = sky2_remove,
.shutdown = sky2_shutdown,
.driver.pm = SKY2_PM_OPS,
};
Expand Down

0 comments on commit 308fb07

Please sign in to comment.