Browse Source

Blackfin: bfin_gpio: proc: fix return value

Signed-off-by: Steven Miao <realmz6@gmail.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Steven Miao 13 years ago
parent
commit
ce8609146d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      arch/blackfin/kernel/bfin_gpio.c

+ 2 - 2
arch/blackfin/kernel/bfin_gpio.c

@@ -1265,8 +1265,8 @@ static __init int gpio_register_proc(void)
 {
 	struct proc_dir_entry *proc_gpio;
 
-	proc_gpio = proc_create("gpio", S_IRUGO, NULL, &gpio_proc_ops);
-	return proc_gpio != NULL;
+	proc_gpio = proc_create("gpio", 0, NULL, &gpio_proc_ops);
+	return proc_gpio == NULL;
 }
 __initcall(gpio_register_proc);
 #endif