Commit ff83066cc7dc52441c2497efb57fac65212dd235

Authored by Bryan O'Donoghue
Committed by Tom Rini
1 parent 7ed4370bb9

nios2: Define PLATFORM__CLEAR_BIT for generic_clear_bit()

nios2 bitops.h provides a __clear_bit() but does not define
PLATFORM__CLEAR_BIT as a result generic_clear_bit() is used instead of the
architecturally provided __clear_bit().

This patch defines PLATFORM__CLEAR_BIT which means that __clear_bit() in
nios2 bitops.h will be called whenever generic_clear_bit() is called - as
opposed to the default cross-platform generic_clear_bit().

Signed-off-by: Bryan O'Donoghue <pure.logic@nexus-software.ie>
Cc: Thomas Chou <thomas@wytron.com.tw>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

arch/nios2/include/asm/bitops/non-atomic.h
... ... @@ -30,6 +30,8 @@
30 30 *p &= ~mask;
31 31 }
32 32  
  33 +#define PLATFORM__CLEAR_BIT
  34 +
33 35 /**
34 36 * __change_bit - Toggle a bit in memory
35 37 * @nr: the bit to change