Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc: lis3lv02d: Fix correct sysfs directory path for lis3lv02d

The lis3lv02d driver does not create a platform device anymore. It was
recently changed to use a faux device instead. Therefore the sysfs path
has changed from /sys/devices/platform/lis3lv02d to
/sys/devices/faux/lis3lv02d.

Fixes: 3b18ccb5472b ("misc: lis3lv02d: convert to use faux_device")
Signed-off-by: Roxana Nicolescu <nicolescu.roxana@protonmail.com>
Link: https://lore.kernel.org/r/20250506110002.36477-1-nicolescu.roxana@protonmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Roxana Nicolescu and committed by
Greg Kroah-Hartman
7b386d74 57483a36

+5 -5
+3 -3
Documentation/misc-devices/lis3lv02d.rst
··· 22 22 models (full list can be found in drivers/platform/x86/hp_accel.c) will have 23 23 their axis automatically oriented on standard way (eg: you can directly play 24 24 neverball). The accelerometer data is readable via 25 - /sys/devices/platform/lis3lv02d. Reported values are scaled 25 + /sys/devices/faux/lis3lv02d. Reported values are scaled 26 26 to mg values (1/1000th of earth gravity). 27 27 28 - Sysfs attributes under /sys/devices/platform/lis3lv02d/: 28 + Sysfs attributes under /sys/devices/faux/lis3lv02d/: 29 29 30 30 position 31 31 - 3D position that the accelerometer reports. Format: "(x,y,z)" ··· 85 85 If your laptop model is not recognized (cf "dmesg"), you can send an 86 86 email to the maintainer to add it to the database. When reporting a new 87 87 laptop, please include the output of "dmidecode" plus the value of 88 - /sys/devices/platform/lis3lv02d/position in these four cases. 88 + /sys/devices/faux/lis3lv02d/position in these four cases. 89 89 90 90 Q&A 91 91 ---
+2 -2
drivers/misc/lis3lv02d/Kconfig
··· 10 10 help 11 11 This driver provides support for the LIS3LV02Dx accelerometer connected 12 12 via SPI. The accelerometer data is readable via 13 - /sys/devices/platform/lis3lv02d. 13 + /sys/devices/faux/lis3lv02d. 14 14 15 15 This driver also provides an absolute input class device, allowing 16 16 the laptop to act as a pinball machine-esque joystick. ··· 26 26 help 27 27 This driver provides support for the LIS3LV02Dx accelerometer connected 28 28 via I2C. The accelerometer data is readable via 29 - /sys/devices/platform/lis3lv02d. 29 + /sys/devices/faux/lis3lv02d. 30 30 31 31 This driver also provides an absolute input class device, allowing 32 32 the device to act as a pinball machine-esque joystick.