Commit e784788d authored by Al Viro's avatar Al Viro

get rid of a bunch of open-coded create_proc_read_entry()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 96e7d915
...@@ -268,12 +268,11 @@ static int __init swp_emulation_init(void) ...@@ -268,12 +268,11 @@ static int __init swp_emulation_init(void)
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
struct proc_dir_entry *res; struct proc_dir_entry *res;
res = create_proc_entry("cpu/swp_emulation", S_IRUGO, NULL); res = create_proc_read_entry("cpu/swp_emulation", S_IRUGO, NULL,
proc_read_status, NULL);
if (!res) if (!res)
return -ENOMEM; return -ENOMEM;
res->read_proc = proc_read_status;
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
printk(KERN_NOTICE "Registering SWP/SWPB emulation handler\n"); printk(KERN_NOTICE "Registering SWP/SWPB emulation handler\n");
......
...@@ -491,7 +491,6 @@ void schedule_usleep(unsigned long us) ...@@ -491,7 +491,6 @@ void schedule_usleep(unsigned long us)
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len
,int *eof, void *data_unused); ,int *eof, void *data_unused);
static struct proc_dir_entry *fasttimer_proc_entry;
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
...@@ -857,8 +856,7 @@ int fast_timer_init(void) ...@@ -857,8 +856,7 @@ int fast_timer_init(void)
} }
#endif #endif
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
if ((fasttimer_proc_entry = create_proc_entry( "fasttimer", 0, 0 ))) create_proc_read_entry("fasttimer", 0, NULL, proc_fasttimer_read, NULL);
fasttimer_proc_entry->read_proc = proc_fasttimer_read;
#endif /* PROC_FS */ #endif /* PROC_FS */
if(request_irq(TIMER1_IRQ_NBR, timer1_handler, 0, if(request_irq(TIMER1_IRQ_NBR, timer1_handler, 0,
"fast timer int", NULL)) "fast timer int", NULL))
......
...@@ -465,7 +465,6 @@ void schedule_usleep(unsigned long us) ...@@ -465,7 +465,6 @@ void schedule_usleep(unsigned long us)
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len
,int *eof, void *data_unused); ,int *eof, void *data_unused);
static struct proc_dir_entry *fasttimer_proc_entry;
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
...@@ -816,9 +815,7 @@ int fast_timer_init(void) ...@@ -816,9 +815,7 @@ int fast_timer_init(void)
printk("fast_timer_init()\n"); printk("fast_timer_init()\n");
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
fasttimer_proc_entry = create_proc_entry("fasttimer", 0, 0); create_proc_read_entry("fasttimer", 0, NULL, proc_fasttimer_read, NULL);
if (fasttimer_proc_entry)
fasttimer_proc_entry->read_proc = proc_fasttimer_read;
#endif /* PROC_FS */ #endif /* PROC_FS */
if (request_irq(TIMER0_INTR_VECT, timer_trig_interrupt, if (request_irq(TIMER0_INTR_VECT, timer_trig_interrupt,
IRQF_SHARED | IRQF_DISABLED, IRQF_SHARED | IRQF_DISABLED,
......
...@@ -158,9 +158,8 @@ static __init int register_proc(void) ...@@ -158,9 +158,8 @@ static __init int register_proc(void)
{ {
struct proc_dir_entry *proc_gpio; struct proc_dir_entry *proc_gpio;
proc_gpio = create_proc_entry("gpio", S_IRUGO, NULL); proc_gpio = create_proc_read_entry("gpio", S_IRUGO, NULL,
if (proc_gpio) gpio_proc_read, NULL);
proc_gpio->read_proc = gpio_proc_read;
return proc_gpio != NULL; return proc_gpio != NULL;
} }
......
...@@ -397,10 +397,9 @@ static int __init ds1620_init(void) ...@@ -397,10 +397,9 @@ static int __init ds1620_init(void)
return ret; return ret;
#ifdef THERM_USE_PROC #ifdef THERM_USE_PROC
proc_therm_ds1620 = create_proc_entry("therm", 0, NULL); proc_therm_ds1620 = create_proc_read_entry("therm", 0, NULL,
if (proc_therm_ds1620) proc_therm_ds1620_read, NULL);
proc_therm_ds1620->read_proc = proc_therm_ds1620_read; if (!proc_therm_ds1620)
else
printk(KERN_ERR "therm: unable to register /proc/therm\n"); printk(KERN_ERR "therm: unable to register /proc/therm\n");
#endif #endif
......
...@@ -80,11 +80,8 @@ static int comedi_read(char *buf, char **start, off_t offset, int len, ...@@ -80,11 +80,8 @@ static int comedi_read(char *buf, char **start, off_t offset, int len,
void comedi_proc_init(void) void comedi_proc_init(void)
{ {
struct proc_dir_entry *comedi_proc; create_proc_read_entry("comedi", S_IFREG | S_IRUGO, NULL,
comedi_read, NULL);
comedi_proc = create_proc_entry("comedi", S_IFREG | S_IRUGO, NULL);
if (comedi_proc)
comedi_proc->read_proc = comedi_read;
} }
void comedi_proc_cleanup(void) void comedi_proc_cleanup(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment