Re: [PATCH 2/5] staging/vchi: Fix build warnings when formatting pointers on aarch64.

2016-10-17 Thread Greg Kroah-Hartman
On Mon, Oct 17, 2016 at 04:38:20PM -0700, Eric Anholt wrote: > Greg Kroah-Hartman writes: > > > On Mon, Oct 17, 2016 at 12:44:03PM -0700, Eric Anholt wrote: > >> The code was generally using "%x" to print and "(unsigned int)" to > >> cast the pointers, but we have %p for printing pointers in the

Re: [PATCH 2/5] staging/vchi: Fix build warnings when formatting pointers on aarch64.

2016-10-17 Thread Eric Anholt
Greg Kroah-Hartman writes: > On Mon, Oct 17, 2016 at 12:44:03PM -0700, Eric Anholt wrote: >> The code was generally using "%x" to print and "(unsigned int)" to >> cast the pointers, but we have %p for printing pointers in the same >> format without any broken casts. > > I already did this work, i

Re: [PATCH 2/5] staging/vchi: Fix build warnings when formatting pointers on aarch64.

2016-10-17 Thread Greg Kroah-Hartman
On Mon, Oct 17, 2016 at 12:44:03PM -0700, Eric Anholt wrote: > The code was generally using "%x" to print and "(unsigned int)" to > cast the pointers, but we have %p for printing pointers in the same > format without any broken casts. I already did this work, it's all checked into my tree, and is

[PATCH 2/5] staging/vchi: Fix build warnings when formatting pointers on aarch64.

2016-10-17 Thread Eric Anholt
The code was generally using "%x" to print and "(unsigned int)" to cast the pointers, but we have %p for printing pointers in the same format without any broken casts. Signed-off-by: Eric Anholt --- .../interface/vchiq_arm/vchiq_2835_arm.c | 9 +- .../vc04_services/interface/vchiq_ar