1
0
Fork 0

mfd: syscon: Fix warnings when printing resource_size_t

Gets rid of these warnings when compile module for 64 bit targets:
  CC      drivers/mfd/syscon.o
  drivers/mfd/syscon.c: In function 'syscon_probe':
  drivers/mfd/syscon.c:155:2: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' [-Wformat]
  drivers/mfd/syscon.c:155:2: warning: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' [-Wformat]

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
hifive-unleashed-5.1
Alexander Shiyan 2013-04-09 21:50:02 +04:00 committed by Samuel Ortiz
parent 066ec1dd44
commit daba96d6f3
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ static int syscon_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, syscon);
dev_info(dev, "regmap 0x%x-0x%x registered\n", res->start, res->end);
dev_info(dev, "regmap %pR registered\n", res);
return 0;
}