mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
ARM: mvebu: fix the name of the parameter used in mvebu_get_soc_id
The name of the two parameters of mvebu_get_soc_id were inverted. This patch fix it in order to have a more readable code. Reported-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Link: https://lkml.kernel.org/r/1397925170-8202-3-git-send-email-gregory.clement@free-electrons.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
c42e1ffa26
commit
8eee0f81cd
@ -95,7 +95,7 @@ static void __init i2c_quirk(void)
|
|||||||
* mechanism. We can exit only if we are sure that we can
|
* mechanism. We can exit only if we are sure that we can
|
||||||
* get the SoC revision and it is more recent than A0.
|
* get the SoC revision and it is more recent than A0.
|
||||||
*/
|
*/
|
||||||
if (mvebu_get_soc_id(&rev, &dev) == 0 && dev > MV78XX0_A0_REV)
|
if (mvebu_get_soc_id(&dev, &rev) == 0 && rev > MV78XX0_A0_REV)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for_each_compatible_node(np, NULL, "marvell,mv78230-i2c") {
|
for_each_compatible_node(np, NULL, "marvell,mv78230-i2c") {
|
||||||
|
Loading…
Reference in New Issue
Block a user