Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11897
b: refs/heads/master
c: 874ec33
h: refs/heads/master
i:
  11895: aa23d1f
v: v3
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Oct 31, 2005
1 parent a93feca commit ad1338b
Show file tree
Hide file tree
Showing 8 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: b888c87b7498557d1dbb9de3d4b8402b1bb89193
refs/heads/master: 874ec33ff9ccf3651590697a2c2923b911bf31d0
2 changes: 1 addition & 1 deletion trunk/arch/i386/kernel/reboot_fixups.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void mach_reboot_fixups(void)

for (i=0; i < (sizeof(fixups_table)/sizeof(fixups_table[0])); i++) {
cur = &(fixups_table[i]);
dev = pci_get_device(cur->vendor, cur->device, 0);
dev = pci_get_device(cur->vendor, cur->device, NULL);
if (!dev)
continue;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/tpm/tpm_atmel.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static struct attribute* atmel_attrs[] = {
&dev_attr_pcrs.attr,
&dev_attr_caps.attr,
&dev_attr_cancel.attr,
0,
NULL,
};

static struct attribute_group atmel_attr_grp = { .attrs = atmel_attrs };
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/tpm/tpm_nsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static struct attribute * nsc_attrs[] = {
&dev_attr_pcrs.attr,
&dev_attr_caps.attr,
&dev_attr_cancel.attr,
0,
NULL,
};

static struct attribute_group nsc_attr_grp = { .attrs = nsc_attrs };
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/isdn/hisax/hfc4s8s_l1.c
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ tx_b_frame(struct hfc4s8s_btype *bch)
Write_hfc8(l1->hw, A_INC_RES_FIFO, 1);
}
ack_len += skb->truesize;
bch->tx_skb = 0;
bch->tx_skb = NULL;
bch->tx_cnt = 0;
dev_kfree_skb(skb);
} else
Expand Down Expand Up @@ -1659,10 +1659,10 @@ hfc4s8s_remove(struct pci_dev *pdev)
}

static struct pci_driver hfc4s8s_driver = {
name:"hfc4s8s_l1",
probe:hfc4s8s_probe,
remove:__devexit_p(hfc4s8s_remove),
id_table:hfc4s8s_ids,
.name = "hfc4s8s_l1",
.probe = hfc4s8s_probe,
.remove = __devexit_p(hfc4s8s_remove),
.id_table = hfc4s8s_ids,
};

/**********************/
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/dvb-usb/dtt200u.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static struct dvb_usb_properties dtt200u_properties = {
.cold_ids = { &dtt200u_usb_table[0], NULL },
.warm_ids = { &dtt200u_usb_table[1], NULL },
},
{ 0 },
{ NULL },
}
};

Expand Down Expand Up @@ -192,7 +192,7 @@ static struct dvb_usb_properties wt220u_properties = {
.cold_ids = { &dtt200u_usb_table[2], NULL },
.warm_ids = { &dtt200u_usb_table[3], NULL },
},
{ 0 },
{ NULL },
}
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/dvb-usb/vp7045.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ static struct dvb_usb_properties vp7045_properties = {
.cold_ids = { &vp7045_usb_table[2], NULL },
.warm_ids = { &vp7045_usb_table[3], NULL },
},
{ 0 },
{ NULL },
}
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/skfp/smt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1896,7 +1896,7 @@ void smt_swap_para(struct smt_header *sm, int len, int direction)

static void smt_string_swap(char *data, const char *format, int len)
{
const char *open_paren = 0 ;
const char *open_paren = NULL ;
int x ;

while (len > 0 && *format) {
Expand Down

0 comments on commit ad1338b

Please sign in to comment.