aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorGaston Gonzalez <gascoar@gmail.com>2022-05-16 19:17:41 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-05-19 17:42:56 +0200
commit63ab906069cd417791f4e15c5eea63699a31b4e3 (patch)
tree2b849176437775cb44502fe161178474d3ceebba /drivers/staging
parentstaging: rtl8192u: remove null check after call container_of() (diff)
downloadlinux-dev-63ab906069cd417791f4e15c5eea63699a31b4e3.tar.xz
linux-dev-63ab906069cd417791f4e15c5eea63699a31b4e3.zip
staging: vc04_services: remove unused macro
BITSET_CLR is not used. Remove the define. Signed-off-by: Gaston Gonzalez <gascoar@gmail.com> Link: https://lore.kernel.org/r/20220516221741.1015814-1-gascoar@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h
index 82b7bd7b54b2..1ddc661642a9 100644
--- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h
+++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.h
@@ -79,7 +79,6 @@
#define BITSET_BIT(b) (1 << (b & 31))
#define BITSET_IS_SET(bs, b) (bs[BITSET_WORD(b)] & BITSET_BIT(b))
#define BITSET_SET(bs, b) (bs[BITSET_WORD(b)] |= BITSET_BIT(b))
-#define BITSET_CLR(bs, b) (bs[BITSET_WORD(b)] &= ~BITSET_BIT(b))
enum {
DEBUG_ENTRIES,