/* * linux/include/linux/parser.h * * Header for lib/parser.c * Intended use of these functions is parsing filesystem argument lists, * but could potentially be used anywhere else that simple option=arg * parsing is required. */ /* associates an integer enumerator with a pattern string. */ struct match_token { int token; const char *pattern; }; typedef struct match_token match_table_t[]; /* Maximum number of arguments that match_token will find in a pattern */ enum {MAX_OPT_ARGS = 3}; /* Describe the location within a string of a substring */ typedef struct { char *from; char *to; } substring_t; int match_token(char *, match_table_t table, substring_t args[]); int match_int(substring_t *, int *result); int match_octal(substring_t *, int *result); int match_hex(substring_t *, int *result); size_t match_strlcpy(char *, const substring_t *, size_t); char *match_strdup(const substring_t *); Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/pinctrl/qcom,pmic-gpio.txt
AgeCommit message (Expand)Author
2021-04-08dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8008 supportGuru Das Srinagesh
2021-03-15dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8350 and friendsVinod Koul
2020-12-04dt-bindings: pinctrl: qcom-pmic-gpio: Add pmx55 supportVinod Koul
2020-07-07Documentation: Document pm660(l) SPMI GPIOs compatibleKonrad Dybcio
2019-11-05dt-bindings: pinctrl: qcom-pmic-gpio: Add support for PM/PMI8950AngeloGioacchino Del Regno
2019-10-16dt-bindings: pinctrl: qcom-pmic-gpio: Add support for pm6150/pm6150lKiran Gunda
2019-08-23dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8150l supportVinod Koul
2019-08-23dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8150b supportVinod Koul
2019-08-23dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8150 supportVinod Koul
2019-01-21dt-bindings: pinctrl: qcom-pmic-gpio: add qcom,pmi8998-gpio bindingBrian Masney
2018-11-26dt-bindings: pinctrl: fix qcom-pmic-gpio for pms405Shawn Guo
2018-09-26dt-bindings: pinctrl: qcom-pmic-gpio: Add pms405 supportVinod Koul
2018-06-18pinctrl: qcom: spmi-gpio: Add pm8998 and pm8005 to bindingStephen Boyd
2017-11-08pinctrl: qcom: spmi-gpio: Add pmi8994 gpio supportRajendra Nayak
2017-08-15pinctrl: qcom: spmi-gpio: Add dtest route for digital inputFenglin Wu
2017-08-15pinctrl: qcom: spmi-gpio: Add support for GPIO LV/MV subtypeFenglin Wu
2017-08-14pinctrl: Add pmi8994 gpio bindingsVivek Gautam
2016-08-11pinctrl: qcom: Add generic ssbi and spmi GPIO/MPP bindingsStephen Boyd
2016-04-25Documentation: dt: pinctrl: fix spelling mistakeEric Engestrom
2015-12-01pinctrl: qcom: spmi-gpio: Add pm8994 gpio supportStephen Boyd
2015-04-08pinctrl: Add support for PM8916 GPIO's and MPP'sIvan T. Ivanov
2014-10-29pinctrl: Device tree bindings for Qualcomm PMIC GPIO blockBjorn Andersson