From: Adrian Bunk This patch adds proper externs for parport_default_timeslice and parport_default_spintime in include/linux/parport.h Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- drivers/parport/procfs.c | 3 --- include/linux/parport.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/parport/procfs.c~parport-sharec-proper-externs drivers/parport/procfs.c --- a/drivers/parport/procfs.c~parport-sharec-proper-externs +++ a/drivers/parport/procfs.c @@ -429,9 +429,6 @@ struct parport_default_sysctl_table ctl_table dev_dir[2]; }; -extern unsigned long parport_default_timeslice; -extern int parport_default_spintime; - static struct parport_default_sysctl_table parport_default_sysctl_table = { .sysctl_header = NULL, diff -puN include/linux/parport.h~parport-sharec-proper-externs include/linux/parport.h --- a/include/linux/parport.h~parport-sharec-proper-externs +++ a/include/linux/parport.h @@ -560,5 +560,8 @@ extern int parport_device_proc_unregiste #endif /* !CONFIG_PARPORT_NOT_PC */ +extern unsigned long parport_default_timeslice; +extern int parport_default_spintime; + #endif /* __KERNEL__ */ #endif /* _PARPORT_H_ */ _