pinctrl: mvebu: Fix compiler warnings
match->data is const void * where as dev.platform_data is just void *. Add a cast to remove the const, which is causing the compiler warning: drivers/pinctrl/mvebu/pinctrl-kirkwood.c:461:26: warning: assignment discards 'const' qualifier from pointer target type Dove has the exact same warning, so gets the same cast. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4b090d8dff
commit
16fa36be89
@ -588,7 +588,7 @@ static int dove_pinctrl_probe(struct platform_device *pdev)
|
|||||||
{
|
{
|
||||||
const struct of_device_id *match =
|
const struct of_device_id *match =
|
||||||
of_match_device(dove_pinctrl_of_match, &pdev->dev);
|
of_match_device(dove_pinctrl_of_match, &pdev->dev);
|
||||||
pdev->dev.platform_data = match->data;
|
pdev->dev.platform_data = (void *)match->data;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* General MPP Configuration Register is part of pdma registers.
|
* General MPP Configuration Register is part of pdma registers.
|
||||||
|
@ -458,7 +458,7 @@ static int kirkwood_pinctrl_probe(struct platform_device *pdev)
|
|||||||
{
|
{
|
||||||
const struct of_device_id *match =
|
const struct of_device_id *match =
|
||||||
of_match_device(kirkwood_pinctrl_of_match, &pdev->dev);
|
of_match_device(kirkwood_pinctrl_of_match, &pdev->dev);
|
||||||
pdev->dev.platform_data = match->data;
|
pdev->dev.platform_data = (void *)match->data;
|
||||||
return mvebu_pinctrl_probe(pdev);
|
return mvebu_pinctrl_probe(pdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user