mtd: aspeed: fix compile warning in aspeed_smc_read_from_ahb()
authorCédric Le Goater <clg@kaod.org>
Thu, 19 Jan 2017 09:13:18 +0000 (10:13 +0100)
committerCyrille Pitchen <cyrille.pitchen@atmel.com>
Fri, 10 Feb 2017 13:21:59 +0000 (14:21 +0100)
commitf40a2725ea720a6270d3970cf11472da66924624
tree677b50c45e76c2cf6da316ca7c99a700a2bb00e2
parent3a08e933415c58689797c5bdc825e78a808fffe1
mtd: aspeed: fix compile warning in aspeed_smc_read_from_ahb()

The first argument of ioread32_rep() and ioread8_rep is not
const. Change aspeed_smc_read_from_ahb() prototype to fix compile
warning :

   drivers/mtd/spi-nor/aspeed-smc.c: In function 'aspeed_smc_read_from_ahb':
   drivers/mtd/spi-nor/aspeed-smc.c:212:16: warning: passing argument 1 of 'ioread32_rep' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      ioread32_rep(src, buf, len >> 2);

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
drivers/mtd/spi-nor/aspeed-smc.c