Re: [dpdk-dev] [PATCH 2/4] bus/fslmc: fix printf of null pointer

2019-05-02 Thread David Marchand
On Wed, May 1, 2019 at 9:50 PM Bruce Richardson wrote: > Printing a null pointer with %s is flagged as a warning by GCC 9, and > should not be done. Replace the %s with the word "null" itself. > > Fixes: 828d51d8fc3e ("bus/fslmc: refactor scan and probe functions") > Cc: shreyansh.j...@nxp.com >

[dpdk-dev] [PATCH 2/4] bus/fslmc: fix printf of null pointer

2019-05-01 Thread Bruce Richardson
Printing a null pointer with %s is flagged as a warning by GCC 9, and should not be done. Replace the %s with the word "null" itself. Fixes: 828d51d8fc3e ("bus/fslmc: refactor scan and probe functions") Cc: shreyansh.j...@nxp.com Signed-off-by: Bruce Richardson --- drivers/bus/fslmc/fslmc_bus.c