* [lm-sensors] [PATCH] HDAPS: handle errors from
@ 2006-08-02 2:37 Dmitry Torokhov
2006-08-02 7:39 ` Jean Delvare
0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Torokhov @ 2006-08-02 2:37 UTC (permalink / raw)
To: lm-sensors
Compile-tested only (do not have the hardware)
--
Dmitry
HDAPS: handle errors from input_register_device()
Signed-off-by: Dmitry Torokhov <dtor at mail.ru>
---
drivers/hwmon/hdaps.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
Index: work/drivers/hwmon/hdaps.c
=================================--- work.orig/drivers/hwmon/hdaps.c
+++ work/drivers/hwmon/hdaps.c
@@ -587,7 +587,9 @@ static int __init hdaps_init(void)
input_set_abs_params(hdaps_idev, ABS_Y,
-256, 256, HDAPS_INPUT_FUZZ, HDAPS_INPUT_FLAT);
- input_register_device(hdaps_idev);
+ ret = input_register_device(hdaps_idev);
+ if (ret)
+ goto out_idev;
/* start up our timer for the input device */
init_timer(&hdaps_timer);
@@ -598,6 +600,8 @@ static int __init hdaps_init(void)
printk(KERN_INFO "hdaps: driver successfully loaded.\n");
return 0;
+out_idev:
+ input_free_device(hdaps_idev);
out_group:
sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
out_device:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-08-02 7:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-02 2:37 [lm-sensors] [PATCH] HDAPS: handle errors from Dmitry Torokhov
2006-08-02 7:39 ` Jean Delvare
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.