Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341751
b: refs/heads/master
c: 3f6db0f
h: refs/heads/master
i:
  341749: 2f266f6
  341747: 4434c4c
  341743: 692f0b3
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 0a2a1a8 commit e0d529b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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: 58b10698d2d60b0b0c3bddd72038af14e62f92bc
refs/heads/master: 3f6db0f38f2a170b4d9d5a7e3c329ab7701cd0cb
16 changes: 8 additions & 8 deletions trunk/drivers/net/ethernet/3com/3c59x.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static int vortex_debug = 1;
#include <linux/delay.h>


static const char version[] __devinitconst =
static const char version[] =
DRV_NAME ": Donald Becker and others.\n";

MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
Expand Down Expand Up @@ -277,7 +277,7 @@ static struct vortex_chip_info {
int flags;
int drv_flags;
int io_size;
} vortex_info_tbl[] __devinitdata = {
} vortex_info_tbl[] = {
{"3c590 Vortex 10Mbps",
PCI_USES_MASTER, IS_VORTEX, 32, },
{"3c592 EISA 10Mbps Demon/Vortex", /* AKPM: from Don's 3c59x_cb.c 0.49H */
Expand Down Expand Up @@ -931,7 +931,7 @@ static int __init vortex_eisa_probe(struct device *device)
return 0;
}

static int __devexit vortex_eisa_remove(struct device *device)
static int vortex_eisa_remove(struct device *device)
{
struct eisa_device *edev;
struct net_device *dev;
Expand Down Expand Up @@ -962,7 +962,7 @@ static struct eisa_driver vortex_eisa_driver = {
.driver = {
.name = "3c59x",
.probe = vortex_eisa_probe,
.remove = __devexit_p(vortex_eisa_remove)
.remove = vortex_eisa_remove
}
};

Expand Down Expand Up @@ -1000,7 +1000,7 @@ static int __init vortex_eisa_init(void)
}

/* returns count (>= 0), or negative on error */
static int __devinit vortex_init_one(struct pci_dev *pdev,
static int vortex_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
int rc, unit, pci_bar;
Expand Down Expand Up @@ -1088,7 +1088,7 @@ static const struct net_device_ops vortex_netdev_ops = {
*
* NOTE: pdev can be NULL, for the case of a Compaq device
*/
static int __devinit vortex_probe1(struct device *gendev,
static int vortex_probe1(struct device *gendev,
void __iomem *ioaddr, int irq,
int chip_idx, int card_idx)
{
Expand Down Expand Up @@ -3222,7 +3222,7 @@ static void acpi_set_WOL(struct net_device *dev)
}


static void __devexit vortex_remove_one(struct pci_dev *pdev)
static void vortex_remove_one(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
struct vortex_private *vp;
Expand Down Expand Up @@ -3265,7 +3265,7 @@ static void __devexit vortex_remove_one(struct pci_dev *pdev)
static struct pci_driver vortex_driver = {
.name = "3c59x",
.probe = vortex_init_one,
.remove = __devexit_p(vortex_remove_one),
.remove = vortex_remove_one,
.id_table = vortex_pci_tbl,
.driver.pm = VORTEX_PM_OPS,
};
Expand Down

0 comments on commit e0d529b

Please sign in to comment.