dect
/
linux-2.6
Archived
13
0
Fork 0

mfd: Fix of_match_node() da9052 arguments

The driver calls of_match_node() with the arguments swapped.

Signed-off-by: Olof Johansson <olof@lixom.net>
Tested-by: Ying-Chun Liu <paul.liu@linaro.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Olof Johansson 2012-05-05 16:02:48 -07:00 committed by Samuel Ortiz
parent 8ee3c2a79f
commit 9e69ab4116
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static int __devinit da9052_i2c_probe(struct i2c_client *client,
struct device_node *np = client->dev.of_node;
const struct of_device_id *deviceid;
deviceid = of_match_node(np, dialog_dt_ids);
deviceid = of_match_node(dialog_dt_ids, np);
id = (const struct i2c_device_id *)deviceid->data;
}
#endif