[PATCH 4/6] msm_qcom: use unsigned int
Sumit Garg
sumit.garg at linaro.org
Fri Nov 3 08:18:42 CET 2023
On Tue, 31 Oct 2023 at 19:52, Caleb Connolly <caleb.connolly at linaro.org> wrote:
>
> Replaces the uses of "unsigned" with "unsigned int".
>
> Signed-off-by: Caleb Connolly <caleb.connolly at linaro.org>
> ---
> drivers/gpio/msm_gpio.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
Reviewed-by: Sumit Garg <sumit.garg at linaro.org>
-Sumit
> diff --git a/drivers/gpio/msm_gpio.c b/drivers/gpio/msm_gpio.c
> index 7a09abdafb2e..7d01fecf46f2 100644
> --- a/drivers/gpio/msm_gpio.c
> +++ b/drivers/gpio/msm_gpio.c
> @@ -49,7 +49,7 @@ static int msm_gpio_direction_input(struct udevice *dev, unsigned int gpio)
> return 0;
> }
>
> -static int msm_gpio_set_value(struct udevice *dev, unsigned gpio, int value)
> +static int msm_gpio_set_value(struct udevice *dev, unsigned int gpio, int value)
> {
> struct msm_gpio_bank *priv = dev_get_priv(dev);
>
> @@ -63,7 +63,7 @@ static int msm_gpio_set_value(struct udevice *dev, unsigned gpio, int value)
> return 0;
> }
>
> -static int msm_gpio_direction_output(struct udevice *dev, unsigned gpio,
> +static int msm_gpio_direction_output(struct udevice *dev, unsigned int gpio,
> int value)
> {
> struct msm_gpio_bank *priv = dev_get_priv(dev);
> @@ -81,7 +81,7 @@ static int msm_gpio_direction_output(struct udevice *dev, unsigned gpio,
> return 0;
> }
>
> -static int msm_gpio_get_value(struct udevice *dev, unsigned gpio)
> +static int msm_gpio_get_value(struct udevice *dev, unsigned int gpio)
> {
> struct msm_gpio_bank *priv = dev_get_priv(dev);
>
> @@ -91,7 +91,7 @@ static int msm_gpio_get_value(struct udevice *dev, unsigned gpio)
> return !!(readl(priv->base + GPIO_IN_OUT_REG(dev, gpio)) >> GPIO_IN);
> }
>
> -static int msm_gpio_get_function(struct udevice *dev, unsigned gpio)
> +static int msm_gpio_get_function(struct udevice *dev, unsigned int gpio)
> {
> struct msm_gpio_bank *priv = dev_get_priv(dev);
>
>
> --
> 2.42.0
>
More information about the U-Boot
mailing list