patch-2.4.21 linux-2.4.21/drivers/sbus/char/bbc_envctrl.c
Next file: linux-2.4.21/drivers/sbus/char/bbc_i2c.c
Previous file: linux-2.4.21/drivers/s390/s390io.c
Back to the patch index
Back to the overall index
- Lines: 25
- Date:
2003-06-13 07:51:36.000000000 -0700
- Orig file:
linux-2.4.20/drivers/sbus/char/bbc_envctrl.c
- Orig date:
2001-04-12 12:10:25.000000000 -0700
diff -urN linux-2.4.20/drivers/sbus/char/bbc_envctrl.c linux-2.4.21/drivers/sbus/char/bbc_envctrl.c
@@ -571,12 +571,13 @@
set_fan_speeds(fp);
}
-void bbc_envctrl_init(void)
+int bbc_envctrl_init(void)
{
struct linux_ebus_child *echild;
int temp_index = 0;
int fan_index = 0;
int devidx = 0;
+ int err = 0;
while ((echild = bbc_i2c_getdev(devidx++)) != NULL) {
if (!strcmp(echild->prom_name, "temperature"))
@@ -585,7 +586,8 @@
attach_one_fan(echild, fan_index++);
}
if (temp_index != 0 && fan_index != 0)
- kernel_thread(kenvctrld, NULL, CLONE_FS | CLONE_FILES);
+ err = kernel_thread(kenvctrld, NULL, CLONE_FS | CLONE_FILES);
+ return err;
}
static void destroy_one_temp(struct bbc_cpu_temperature *tp)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)