File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ static void amba_kmi_close(struct serio *io)
107
107
clk_disable (kmi -> clk );
108
108
}
109
109
110
- static int amba_kmi_probe (struct amba_device * dev , void * id )
110
+ static int amba_kmi_probe (struct amba_device * dev , struct amba_id * id )
111
111
{
112
112
struct amba_kmi_port * kmi ;
113
113
struct serio * io ;
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ static void mmci_check_status(unsigned long data)
490
490
mod_timer (& host -> timer , jiffies + HZ );
491
491
}
492
492
493
- static int __devinit mmci_probe (struct amba_device * dev , void * id )
493
+ static int __devinit mmci_probe (struct amba_device * dev , struct amba_id * id )
494
494
{
495
495
struct mmc_platform_data * plat = dev -> dev .platform_data ;
496
496
struct mmci_host * host ;
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ static const struct rtc_class_ops pl030_ops = {
102
102
.set_alarm = pl030_set_alarm ,
103
103
};
104
104
105
- static int pl030_probe (struct amba_device * dev , void * id )
105
+ static int pl030_probe (struct amba_device * dev , struct amba_id * id )
106
106
{
107
107
struct pl030_rtc * rtc ;
108
108
int ret ;
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ static int pl031_remove(struct amba_device *adev)
127
127
return 0 ;
128
128
}
129
129
130
- static int pl031_probe (struct amba_device * adev , void * id )
130
+ static int pl031_probe (struct amba_device * adev , struct amba_id * id )
131
131
{
132
132
int ret ;
133
133
struct pl031_local * ldata ;
Original file line number Diff line number Diff line change @@ -665,7 +665,7 @@ static struct uart_driver amba_reg = {
665
665
.cons = AMBA_CONSOLE ,
666
666
};
667
667
668
- static int pl010_probe (struct amba_device * dev , void * id )
668
+ static int pl010_probe (struct amba_device * dev , struct amba_id * id )
669
669
{
670
670
struct uart_amba_port * uap ;
671
671
void __iomem * base ;
Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ static struct uart_driver amba_reg = {
729
729
.cons = AMBA_CONSOLE ,
730
730
};
731
731
732
- static int pl011_probe (struct amba_device * dev , void * id )
732
+ static int pl011_probe (struct amba_device * dev , struct amba_id * id )
733
733
{
734
734
struct uart_amba_port * uap ;
735
735
void __iomem * base ;
Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ static int clcdfb_register(struct clcd_fb *fb)
437
437
return ret ;
438
438
}
439
439
440
- static int clcdfb_probe (struct amba_device * dev , void * id )
440
+ static int clcdfb_probe (struct amba_device * dev , struct amba_id * id )
441
441
{
442
442
struct clcd_board * board = dev -> dev .platform_data ;
443
443
struct clcd_fb * fb ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ struct amba_id {
28
28
29
29
struct amba_driver {
30
30
struct device_driver drv ;
31
- int (* probe )(struct amba_device * , void * );
31
+ int (* probe )(struct amba_device * , struct amba_id * );
32
32
int (* remove )(struct amba_device * );
33
33
void (* shutdown )(struct amba_device * );
34
34
int (* suspend )(struct amba_device * , pm_message_t );
Original file line number Diff line number Diff line change @@ -1074,7 +1074,7 @@ static unsigned int __devinit aaci_size_fifo(struct aaci *aaci)
1074
1074
return i ;
1075
1075
}
1076
1076
1077
- static int __devinit aaci_probe (struct amba_device * dev , void * id )
1077
+ static int __devinit aaci_probe (struct amba_device * dev , struct amba_id * id )
1078
1078
{
1079
1079
struct aaci * aaci ;
1080
1080
int ret , i ;
You can’t perform that action at this time.
0 commit comments