mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08:00
mmc/omap_hsmmc: add a const qualifier
This prepares *of_device_id.data becoming const. Without this change the following warning would occur: drivers/mmc/host/omap_hsmmc.c: In function 'omap_hsmmc_probe': drivers/mmc/host/omap_hsmmc.c:1808: warning: initialization discards qualifiers from pointer target type Acked-by: Venkatraman S <svenkatr@ti.com> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
This commit is contained in:
parent
215e691c2a
commit
efc9b736c4
@ -1782,7 +1782,7 @@ static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
|
|||||||
if (match) {
|
if (match) {
|
||||||
pdata = of_get_hsmmc_pdata(&pdev->dev);
|
pdata = of_get_hsmmc_pdata(&pdev->dev);
|
||||||
if (match->data) {
|
if (match->data) {
|
||||||
u16 *offsetp = match->data;
|
const u16 *offsetp = match->data;
|
||||||
pdata->reg_offset = *offsetp;
|
pdata->reg_offset = *offsetp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user