diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2021-10-21 19:35:14 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-10-21 13:02:45 +0200 |
commit | 310e75c72fefa3b0b4535f669c8b37c963a2dba5 (patch) | |
tree | 3d1c280a3785f4c95eae1f1ff272da675b5ba4a2 /drivers/counter/counter-chrdev.c | |
parent | 8135cc5b270b3f224615bdee8bd7d66afee87991 (diff) | |
download | linux-310e75c72fefa3b0b4535f669c8b37c963a2dba5.tar.gz linux-310e75c72fefa3b0b4535f669c8b37c963a2dba5.tar.bz2 linux-310e75c72fefa3b0b4535f669c8b37c963a2dba5.zip |
counter: Cleanup lingering atomic.h includes
With the removal of the chrdev_lock atomic flag, the counter-sysfs.c and
counter-chrdev.c no longer needs to include the atomic.h header file.
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Link: https://lore.kernel.org/r/20211021103514.955622-1-vilhelm.gray@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/counter/counter-chrdev.c')
-rw-r--r-- | drivers/counter/counter-chrdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/counter/counter-chrdev.c b/drivers/counter/counter-chrdev.c index b747dc81cfc6..0c82613582f1 100644 --- a/drivers/counter/counter-chrdev.c +++ b/drivers/counter/counter-chrdev.c @@ -3,7 +3,6 @@ * Generic Counter character device interface * Copyright (C) 2020 William Breathitt Gray */ -#include <linux/atomic.h> #include <linux/cdev.h> #include <linux/counter.h> #include <linux/err.h> |