Commit 32c6dcff authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: mt7621-pinctrl: replace ENOSYS with better fitting error code

This commit replaces ENOSYS return with ENOTSUPP silencing the
following checkpatch warning:

WARNING: ENOSYS means 'invalid syscall nr' and nothing else
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63e57b95
...@@ -398,7 +398,7 @@ static int rt2880_pinmux_probe(struct platform_device *pdev) ...@@ -398,7 +398,7 @@ static int rt2880_pinmux_probe(struct platform_device *pdev)
struct device_node *np; struct device_node *np;
if (!rt2880_pinmux_data) if (!rt2880_pinmux_data)
return -ENOSYS; return -ENOTSUPP;
/* setup the private data */ /* setup the private data */
p = devm_kzalloc(&pdev->dev, sizeof(struct rt2880_priv), GFP_KERNEL); p = devm_kzalloc(&pdev->dev, sizeof(struct rt2880_priv), GFP_KERNEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment