]> git.baikalelectronics.ru Git - kernel.git/commit
metag: Only define atomic_dec_if_positive conditionally
authorGuenter Roeck <linux@roeck-us.net>
Fri, 7 Oct 2016 17:40:59 +0000 (10:40 -0700)
committerJames Hogan <james.hogan@imgtec.com>
Fri, 7 Oct 2016 20:35:21 +0000 (21:35 +0100)
commit8f90986dab4a17e12acdaea0eec0f5f7814b0e13
tree31d9211ba81e782f85893505676e2256236805c3
parenta4f2277c6df45685f174bf2a0b30bc54b8d76390
metag: Only define atomic_dec_if_positive conditionally

The definition of atomic_dec_if_positive() assumes that
atomic_sub_if_positive() exists, which is only the case if
metag specific atomics are used. This results in the following
build error when trying to build metag1_defconfig.

kernel/ucount.c: In function 'dec_ucount':
kernel/ucount.c:211: error:
implicit declaration of function 'atomic_sub_if_positive'

Moving the definition of atomic_dec_if_positive() into the metag
conditional code fixes the problem.

Fixes: e91181cef39c ("metag: Atomics, locks and bitops")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: <stable@vger.kernel.org> # 3.9.x-
arch/metag/include/asm/atomic.h