pinctrl: merrifield: Convert to use new memeber in struct intel_function
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 19 Dec 2022 12:42:38 +0000 (14:42 +0200)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 30 Dec 2022 08:22:53 +0000 (10:22 +0200)
Convert driver to use generic data type and hence a new member in
the struct intel_function. No functional change intended.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/pinctrl/intel/pinctrl-merrifield.c

index c0845bb..365c391 100644 (file)
@@ -576,7 +576,7 @@ static const char *mrfld_get_function_name(struct pinctrl_dev *pctldev,
 {
        struct mrfld_pinctrl *mp = pinctrl_dev_get_drvdata(pctldev);
 
-       return mp->functions[function].name;
+       return mp->functions[function].func.name;
 }
 
 static int mrfld_get_function_groups(struct pinctrl_dev *pctldev,
@@ -586,8 +586,8 @@ static int mrfld_get_function_groups(struct pinctrl_dev *pctldev,
 {
        struct mrfld_pinctrl *mp = pinctrl_dev_get_drvdata(pctldev);
 
-       *groups = mp->functions[function].groups;
-       *ngroups = mp->functions[function].ngroups;
+       *groups = mp->functions[function].func.groups;
+       *ngroups = mp->functions[function].func.ngroups;
        return 0;
 }