Home
last modified time | relevance | path

Searched hist:"971 f5c40" (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/net/ethernet/asix/
H A Dax88796c_main.c971f5c40 Mon Oct 25 21:12:39 GMT 2021 Nathan Chancellor <nathan@kernel.org> net: ax88796c: Remove pointless check in ax88796c_open()

Clang warns:

drivers/net/ethernet/asix/ax88796c_main.c:851:24: error: address of
array 'ax_local->phydev->advertising' will always evaluate to 'true'
[-Werror,-Wpointer-bool-conversion]
if (ax_local->phydev->advertising &&
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ ~~

advertising cannot be NULL here if ax_local is not NULL, which cannot
happen due to the check in ax88796c_probe(). Remove the check.

Link: https://github.com/ClangBuiltLinux/linux/issues/1492
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>