aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamu Onkalo <[email protected]>2009-10-07 16:32:35 -0700
committerLinus Torvalds <[email protected]>2009-10-08 07:36:40 -0700
commitd82e23dcaeb083e520fd1ec87d014d0c4a31d79c (patch)
treef9df0c095a2bbbd6ea29817434398dd7c1436b7f
parenta1125b1e41228bc2e5b4f023004a4280282d1dab (diff)
lis3lv02d_spi: module unload didn't remove sysfs entry
In module unload, lis3lv02d core driver sysfs clean up was not called. Signed-off-by: Samu Onkalo <[email protected]> Acked-by: Daniel Mack <[email protected]> Cc: Éric Piel <[email protected]> Cc: "Trisal, Kalhan" <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--drivers/hwmon/lis3lv02d_spi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/lis3lv02d_spi.c b/drivers/hwmon/lis3lv02d_spi.c
index ecd739534f6a..82b16808a274 100644
--- a/drivers/hwmon/lis3lv02d_spi.c
+++ b/drivers/hwmon/lis3lv02d_spi.c
@@ -83,7 +83,8 @@ static int __devexit lis302dl_spi_remove(struct spi_device *spi)
struct lis3lv02d *lis3 = spi_get_drvdata(spi);
lis3lv02d_joystick_disable();
lis3lv02d_poweroff(lis3);
- return 0;
+
+ return lis3lv02d_remove_fs(&lis3_dev);
}
#ifdef CONFIG_PM