From 310e75c72fefa3b0b4535f669c8b37c963a2dba5 Mon Sep 17 00:00:00 2001 From: William Breathitt Gray Date: Thu, 21 Oct 2021 19:35:14 +0900 Subject: [PATCH] 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 Link: https://lore.kernel.org/r/20211021103514.955622-1-vilhelm.gray@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/counter/counter-chrdev.c | 1 - drivers/counter/counter-sysfs.c | 1 - 2 files changed, 2 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 #include #include #include diff --git a/drivers/counter/counter-sysfs.c b/drivers/counter/counter-sysfs.c index 8c2d7c29ea59..67a988851657 100644 --- a/drivers/counter/counter-sysfs.c +++ b/drivers/counter/counter-sysfs.c @@ -3,7 +3,6 @@ * Generic Counter sysfs interface * Copyright (C) 2020 William Breathitt Gray */ -#include #include #include #include -- 2.25.1