Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341760
b: refs/heads/master
c: 2397188
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent bbd7c75 commit da19d48
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: a9590879e12f920d8b2fc74c019b5d1604068862
refs/heads/master: 239718871072b45370816cf272ea29c0d34b3d12
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/broadcom/b44.c
Original file line number Diff line number Diff line change
Expand Up @@ -2083,7 +2083,7 @@ static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
return err;
}

static int __devinit b44_get_invariants(struct b44 *bp)
static int b44_get_invariants(struct b44 *bp)
{
struct ssb_device *sdev = bp->sdev;
int err = 0;
Expand Down Expand Up @@ -2141,7 +2141,7 @@ static const struct net_device_ops b44_netdev_ops = {
#endif
};

static int __devinit b44_init_one(struct ssb_device *sdev,
static int b44_init_one(struct ssb_device *sdev,
const struct ssb_device_id *ent)
{
struct net_device *dev;
Expand Down Expand Up @@ -2249,7 +2249,7 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
return err;
}

static void __devexit b44_remove_one(struct ssb_device *sdev)
static void b44_remove_one(struct ssb_device *sdev)
{
struct net_device *dev = ssb_get_drvdata(sdev);

Expand Down Expand Up @@ -2340,7 +2340,7 @@ static struct ssb_driver b44_ssb_driver = {
.name = DRV_MODULE_NAME,
.id_table = b44_ssb_tbl,
.probe = b44_init_one,
.remove = __devexit_p(b44_remove_one),
.remove = b44_remove_one,
.suspend = b44_suspend,
.resume = b44_resume,
};
Expand Down

0 comments on commit da19d48

Please sign in to comment.