diff options
| author | Robert Marko <[email protected]> | 2020-07-06 10:37:56 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-07-29 08:43:40 -0400 |
| commit | 0c7eb6e525decee1b9ce9096888338896ffbb460 (patch) | |
| tree | 13e24c21c693fccf70cf14f0f6dda7b5e4b2f79f /drivers | |
| parent | 185dcf7f56dde4953ccb8b43355355e86376efb8 (diff) | |
msm_gpio: Add support for Qualcomm IPQ40xx
Snapdragon SoCs and IPQ40xx use common TLMM IP,
so existing driver supports IPQ40xx as well.
So lets simply add a compatible for IPQ40xx.
Signed-off-by: Robert Marko <[email protected]>
Reviewed-By: Ramon Fried <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gpio/msm_gpio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/msm_gpio.c b/drivers/gpio/msm_gpio.c index fe6b33e1dff..416fb56a98d 100644 --- a/drivers/gpio/msm_gpio.c +++ b/drivers/gpio/msm_gpio.c @@ -118,6 +118,7 @@ static int msm_gpio_ofdata_to_platdata(struct udevice *dev) static const struct udevice_id msm_gpio_ids[] = { { .compatible = "qcom,msm8916-pinctrl" }, { .compatible = "qcom,apq8016-pinctrl" }, + { .compatible = "qcom,ipq4019-pinctrl" }, { } }; |
