diff options
| author | Kent Gibson <[email protected]> | 2024-09-24 15:56:24 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2024-09-30 08:13:04 +0000 |
| commit | f522f396ab801ecaec132948b3766fea3a41359f (patch) | |
| tree | 61410ba0def5d5e8f1014960a25c72cbe5997c46 /drivers/gpio/gpiolib-cdev.c | |
| parent | gpio: free irqs that are still requested when the chip is being removed (diff) | |
| download | kernel-f522f396ab801ecaec132948b3766fea3a41359f.tar.gz kernel-f522f396ab801ecaec132948b3766fea3a41359f.zip | |
gpiolib: cdev: Fix reference to linereq_set_config_unlocked()
With the change to cleanup.h guards, linereq_set_config_unlocked() was
collapsed into linereq_set_config(), but documentation referencing it
was not updated to reflect that change.
Update the reference to linereq_set_config().
Signed-off-by: Kent Gibson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bartosz Golaszewski <[email protected]>
Diffstat (limited to 'drivers/gpio/gpiolib-cdev.c')
| -rw-r--r-- | drivers/gpio/gpiolib-cdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib-cdev.c b/drivers/gpio/gpiolib-cdev.c index 78c9d9ed3d68..6113a283c34a 100644 --- a/drivers/gpio/gpiolib-cdev.c +++ b/drivers/gpio/gpiolib-cdev.c @@ -450,7 +450,7 @@ struct line { * The flags for the active edge detector configuration. * * edflags is set by linereq_create(), linereq_free(), and - * linereq_set_config_unlocked(), which are themselves mutually + * linereq_set_config(), which are themselves mutually * exclusive, and is accessed by edge_irq_thread(), * process_hw_ts_thread() and debounce_work_func(), * which can all live with a slightly stale value. |
