Skip to content
Snippets Groups Projects
Commit 798fb871 authored by Gianfranco Mariotti's avatar Gianfranco Mariotti
Browse files

[DRIVER] fxl6408: fix warn about excess arguments

From GCC: "warning: too many arguments for format [-Wformat-extra-args]"
Remove excess argument to reporting function.
parent a5ff10d0
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ static int fxl6408_probe(struct i2c_client *client, ...@@ -168,7 +168,7 @@ static int fxl6408_probe(struct i2c_client *client,
dev_err(dev, "Could not get reset-gpios: %d\n", ret); dev_err(dev, "Could not get reset-gpios: %d\n", ret);
return ret; return ret;
} }
dev_warn(dev, "Could not get reset-gpios: already in use\n", ret); dev_warn(dev, "Could not get reset-gpios: already in use\n");
} }
/* Check the device ID register to see if it's responding. /* Check the device ID register to see if it's responding.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment