[PATCH 03/15] iommu/arm-smmu: fix decimal printf format specifiers prefixed with 0x

2014-08-06 Thread Hans Wennborg
The prefix suggests the number should be printed in hex, so use the %x specifier to do that. Found by using regex suggested by Joe Perches. Signed-off-by: Hans Wennborg --- drivers/iommu/arm-smmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iommu/arm-smmu.c b/dr

Re: [PATCH 03/15] iommu/arm-smmu: fix decimal printf format specifiers prefixed with 0x

2014-08-06 Thread Will Deacon
On Wed, Aug 06, 2014 at 05:42:01AM +0100, Hans Wennborg wrote: > The prefix suggests the number should be printed in hex, so use > the %x specifier to do that. > > Found by using regex suggested by Joe Perches. > > Signed-off-by: Hans Wennborg > --- > drivers/iommu/arm-smmu.c | 2 +- > 1 file c