Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341767
b: refs/heads/master
c: ff76a3c
h: refs/heads/master
i:
  341765: 7ec4e21
  341763: 71c14a1
  341759: bbd7c75
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 7f91214 commit ebec907
Show file tree
Hide file tree
Showing 5 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: d289f864601eb3678824ba3c0b15217af79171e0
refs/heads/master: ff76a3cca3a2f8664e0625cb4d75601ff9ccde76
6 changes: 3 additions & 3 deletions trunk/drivers/net/ethernet/chelsio/cxgb/cxgb2.c
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ static const struct net_device_ops cxgb_netdev_ops = {
#endif
};

static int __devinit init_one(struct pci_dev *pdev,
static int init_one(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
static int version_printed;
Expand Down Expand Up @@ -1332,7 +1332,7 @@ static inline void t1_sw_reset(struct pci_dev *pdev)
pci_write_config_dword(pdev, A_PCICFG_PM_CSR, 0);
}

static void __devexit remove_one(struct pci_dev *pdev)
static void remove_one(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
struct adapter *adapter = dev->ml_priv;
Expand Down Expand Up @@ -1361,7 +1361,7 @@ static struct pci_driver driver = {
.name = DRV_NAME,
.id_table = t1_pci_tbl,
.probe = init_one,
.remove = __devexit_p(remove_one),
.remove = remove_one,
};

static int __init t1_init_module(void)
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/chelsio/cxgb/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -2071,7 +2071,7 @@ static void espibug_workaround(unsigned long data)
/*
* Creates a t1_sge structure and returns suggested resource parameters.
*/
struct sge * __devinit t1_sge_create(struct adapter *adapter,
struct sge *t1_sge_create(struct adapter *adapter,
struct sge_params *p)
{
struct sge *sge = kzalloc(sizeof(*sge), GFP_KERNEL);
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/net/ethernet/chelsio/cxgb/subr.c
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ static void power_sequence_xpak(adapter_t* adapter)
}
}

int __devinit t1_get_board_rev(adapter_t *adapter, const struct board_info *bi,
int t1_get_board_rev(adapter_t *adapter, const struct board_info *bi,
struct adapter_params *p)
{
p->chip_version = bi->chip_term;
Expand Down Expand Up @@ -992,7 +992,7 @@ int t1_init_hw_modules(adapter_t *adapter)
/*
* Determine a card's PCI mode.
*/
static void __devinit get_pci_mode(adapter_t *adapter, struct chelsio_pci_params *p)
static void get_pci_mode(adapter_t *adapter, struct chelsio_pci_params *p)
{
static const unsigned short speed_map[] = { 33, 66, 100, 133 };
u32 pci_mode;
Expand Down Expand Up @@ -1028,7 +1028,7 @@ void t1_free_sw_modules(adapter_t *adapter)
t1_espi_destroy(adapter->espi);
}

static void __devinit init_link_config(struct link_config *lc,
static void init_link_config(struct link_config *lc,
const struct board_info *bi)
{
lc->supported = bi->caps;
Expand All @@ -1049,7 +1049,7 @@ static void __devinit init_link_config(struct link_config *lc,
* Allocate and initialize the data structures that hold the SW state of
* the Terminator HW modules.
*/
int __devinit t1_init_sw_modules(adapter_t *adapter,
int t1_init_sw_modules(adapter_t *adapter,
const struct board_info *bi)
{
unsigned int i;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/chelsio/cxgb/tp.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void t1_tp_destroy(struct petp *tp)
kfree(tp);
}

struct petp *__devinit t1_tp_create(adapter_t * adapter, struct tp_params *p)
struct petp *t1_tp_create(adapter_t *adapter, struct tp_params *p)
{
struct petp *tp = kzalloc(sizeof(*tp), GFP_KERNEL);

Expand Down

0 comments on commit ebec907

Please sign in to comment.