diff options
author | Ovidiu Panait | 2020-09-29 20:27:13 +0300 |
---|---|---|
committer | Matthias Brugger | 2020-10-02 17:32:28 +0200 |
commit | 0db912de153743e2ec97bd022640c5722eb07737 (patch) | |
tree | f1f38e647653c7de53d0d2b6080fe9427f14ead2 /include/imx8image.h | |
parent | e020c07a020000d9b9cbba8ea56109b37c3926c6 (diff) |
pinctrl: bcm283x: Store the return value of dev_read_u32_default to int
Currently, the return value of dev_read_u32_default is stored in an u32,
causing the subsequent "if (function < 0)" to always be false:
u32 function;
...
function = dev_read_u32_default(config, "brcm,function", -1);
if (function < 0) {
debug("Failed reading function for pinconfig %s (%d)\n",
config->name, function);
return -EINVAL;
}
Make "function" variable an int to fix this.
Cc: Matthias Brugger <mbrugger@suse.com>
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'include/imx8image.h')
0 files changed, 0 insertions, 0 deletions