Skip to content

Commit 6a27268

Browse files
Atomar25linusw
authored andcommitted
pinctrl: actions: fix function group name for i2c0_group
After commit 6f87359 ("pinctrl: actions: Fix functions groups names for S700 SoC") following error has been observed while booting Linux on Cubieboard7-lite(based on S700 SoC). [ 1.206245] pinctrl-s700 e01b0000.pinctrl: invalid group "i2c0_mfp" for function "i2c0" This commit fixes it by using correct name for i2c0_group. Fixes: 6f87359 ("pinctrl: actions: Fix functions groups names for S700 SoC") Signed-off-by: Amit Singh Tomar <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Manivannan Sadhasivam <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent d1f7af4 commit 6a27268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/actions/pinctrl-s700.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ static const char * const sd2_groups[] = {
14351435
static const char * const i2c0_groups[] = {
14361436
"uart0_rx_mfp",
14371437
"uart0_tx_mfp",
1438-
"i2c0_mfp_mfp",
1438+
"i2c0_mfp",
14391439
};
14401440

14411441
static const char * const i2c1_groups[] = {

0 commit comments

Comments
 (0)