Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation/pinctrl: fix a few syntax errors in code examples

Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

authored by

Uwe Kleine-König and committed by
Linus Walleij
f54367f9 546edd83

+7 -8
+7 -8
Documentation/pinctrl.txt
··· 857 857 858 858 ... 859 859 { 860 - .name "2bit" 860 + .name = "2bit" 861 861 .ctrl_dev_name = "pinctrl-foo", 862 862 .function = "mmc0", 863 863 .group = "mmc0_1_grp", 864 864 .dev_name = "foo-mmc.0", 865 865 }, 866 866 { 867 - .name "4bit" 867 + .name = "4bit" 868 868 .ctrl_dev_name = "pinctrl-foo", 869 869 .function = "mmc0", 870 870 .group = "mmc0_1_grp", 871 871 .dev_name = "foo-mmc.0", 872 872 }, 873 873 { 874 - .name "4bit" 874 + .name = "4bit" 875 875 .ctrl_dev_name = "pinctrl-foo", 876 876 .function = "mmc0", 877 877 .group = "mmc0_2_grp", 878 878 .dev_name = "foo-mmc.0", 879 879 }, 880 880 { 881 - .name "8bit" 881 + .name = "8bit" 882 882 .ctrl_dev_name = "pinctrl-foo", 883 - .function = "mmc0", 884 883 .group = "mmc0_1_grp", 885 884 .dev_name = "foo-mmc.0", 886 885 }, 887 886 { 888 - .name "8bit" 887 + .name = "8bit" 889 888 .ctrl_dev_name = "pinctrl-foo", 890 889 .function = "mmc0", 891 890 .group = "mmc0_2_grp", 892 891 .dev_name = "foo-mmc.0", 893 892 }, 894 893 { 895 - .name "8bit" 894 + .name = "8bit" 896 895 .ctrl_dev_name = "pinctrl-foo", 897 896 .function = "mmc0", 898 897 .group = "mmc0_3_grp", ··· 994 995 like this: 995 996 996 997 { 997 - .name "POWERMAP" 998 + .name = "POWERMAP" 998 999 .ctrl_dev_name = "pinctrl-foo", 999 1000 .function = "power_func", 1000 1001 .hog_on_boot = true,