]> git.baikalelectronics.ru Git - kernel.git/commit
cb710: avoid NULL pointer subtraction
authorArnd Bergmann <arnd@arndb.de>
Mon, 27 Sep 2021 12:13:57 +0000 (14:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Oct 2021 09:40:13 +0000 (11:40 +0200)
commita01a79e7d3ccc7208dca98b36575a9ad27cb7863
tree6998184e4111bacebdf0442e7d1dc57f609c8ae1
parente64ee0dc76f081a4dc2c09c9ee83c99519dd066c
cb710: avoid NULL pointer subtraction

commit 63819ff3dcdd96522bca7fbfe52948ea8e37439d upstream.

clang-14 complains about an unusual way of converting a pointer to
an integer:

drivers/misc/cb710/sgbuf2.c:50:15: error: performing pointer subtraction with a null pointer has undefined behavior [-Werror,-Wnull-pointer-subtraction]
        return ((ptr - NULL) & 3) != 0;

Replace this with a normal cast to uintptr_t.

Fixes: c87ff62df22b ("mmc: Driver for CB710/720 memory card reader (MMC part)")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20210927121408.939246-1-arnd@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/cb710/sgbuf2.c