Skip to content
Commit 84fd1b19 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by David S. Miller
Browse files

qede: hide 32-bit compile warning



The addition of the per-queue statistics introduced a harmless warning
on all 32-bit architectures:

drivers/net/ethernet/qlogic/qede/qede_ethtool.c: In function 'qede_get_ethtool_stats':
drivers/net/ethernet/qlogic/qede/qede_ethtool.c:244:31: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
      buf[cnt++] = QEDE_TQSTATS_DATA(edev,
                               ^
drivers/net/ethernet/qlogic/qede/qede_ethtool.c:244:22: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
      buf[cnt++] = QEDE_TQSTATS_DATA(edev,
                      ^
This changes the cast to 'void *' to shut up the warning, which
avoids the assumptions on the size of the pointer type.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Fixes: 68db9ec2

 ("qede: Add support for per-queue stats.")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1ddcf41f
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment