pinctrl: intel: Convert unsigned to unsigned int

Simple type conversion with no functional change implied.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Andy Shevchenko 2018-09-26 17:50:26 +03:00 committed by Linus Walleij
parent 73ae1462b7
commit 04035f7f59
2 changed files with 67 additions and 66 deletions

View File

@ -118,7 +118,7 @@ struct intel_pinctrl {
#define padgroup_offset(g, p) ((p) - (g)->base) #define padgroup_offset(g, p) ((p) - (g)->base)
static struct intel_community *intel_get_community(struct intel_pinctrl *pctrl, static struct intel_community *intel_get_community(struct intel_pinctrl *pctrl,
unsigned pin) unsigned int pin)
{ {
struct intel_community *community; struct intel_community *community;
int i; int i;
@ -136,7 +136,7 @@ static struct intel_community *intel_get_community(struct intel_pinctrl *pctrl,
static const struct intel_padgroup * static const struct intel_padgroup *
intel_community_get_padgroup(const struct intel_community *community, intel_community_get_padgroup(const struct intel_community *community,
unsigned pin) unsigned int pin)
{ {
int i; int i;
@ -150,11 +150,11 @@ intel_community_get_padgroup(const struct intel_community *community,
return NULL; return NULL;
} }
static void __iomem *intel_get_padcfg(struct intel_pinctrl *pctrl, unsigned pin, static void __iomem *intel_get_padcfg(struct intel_pinctrl *pctrl,
unsigned reg) unsigned int pin, unsigned int reg)
{ {
const struct intel_community *community; const struct intel_community *community;
unsigned padno; unsigned int padno;
size_t nregs; size_t nregs;
community = intel_get_community(pctrl, pin); community = intel_get_community(pctrl, pin);
@ -170,11 +170,11 @@ static void __iomem *intel_get_padcfg(struct intel_pinctrl *pctrl, unsigned pin,
return community->pad_regs + reg + padno * nregs * 4; return community->pad_regs + reg + padno * nregs * 4;
} }
static bool intel_pad_owned_by_host(struct intel_pinctrl *pctrl, unsigned pin) static bool intel_pad_owned_by_host(struct intel_pinctrl *pctrl, unsigned int pin)
{ {
const struct intel_community *community; const struct intel_community *community;
const struct intel_padgroup *padgrp; const struct intel_padgroup *padgrp;
unsigned gpp, offset, gpp_offset; unsigned int gpp, offset, gpp_offset;
void __iomem *padown; void __iomem *padown;
community = intel_get_community(pctrl, pin); community = intel_get_community(pctrl, pin);
@ -195,11 +195,11 @@ static bool intel_pad_owned_by_host(struct intel_pinctrl *pctrl, unsigned pin)
return !(readl(padown) & PADOWN_MASK(gpp_offset)); return !(readl(padown) & PADOWN_MASK(gpp_offset));
} }
static bool intel_pad_acpi_mode(struct intel_pinctrl *pctrl, unsigned pin) static bool intel_pad_acpi_mode(struct intel_pinctrl *pctrl, unsigned int pin)
{ {
const struct intel_community *community; const struct intel_community *community;
const struct intel_padgroup *padgrp; const struct intel_padgroup *padgrp;
unsigned offset, gpp_offset; unsigned int offset, gpp_offset;
void __iomem *hostown; void __iomem *hostown;
community = intel_get_community(pctrl, pin); community = intel_get_community(pctrl, pin);
@ -219,11 +219,11 @@ static bool intel_pad_acpi_mode(struct intel_pinctrl *pctrl, unsigned pin)
return !(readl(hostown) & BIT(gpp_offset)); return !(readl(hostown) & BIT(gpp_offset));
} }
static bool intel_pad_locked(struct intel_pinctrl *pctrl, unsigned pin) static bool intel_pad_locked(struct intel_pinctrl *pctrl, unsigned int pin)
{ {
struct intel_community *community; struct intel_community *community;
const struct intel_padgroup *padgrp; const struct intel_padgroup *padgrp;
unsigned offset, gpp_offset; unsigned int offset, gpp_offset;
u32 value; u32 value;
community = intel_get_community(pctrl, pin); community = intel_get_community(pctrl, pin);
@ -256,7 +256,7 @@ static bool intel_pad_locked(struct intel_pinctrl *pctrl, unsigned pin)
return false; return false;
} }
static bool intel_pad_usable(struct intel_pinctrl *pctrl, unsigned pin) static bool intel_pad_usable(struct intel_pinctrl *pctrl, unsigned int pin)
{ {
return intel_pad_owned_by_host(pctrl, pin) && return intel_pad_owned_by_host(pctrl, pin) &&
!intel_pad_locked(pctrl, pin); !intel_pad_locked(pctrl, pin);
@ -270,15 +270,15 @@ static int intel_get_groups_count(struct pinctrl_dev *pctldev)
} }
static const char *intel_get_group_name(struct pinctrl_dev *pctldev, static const char *intel_get_group_name(struct pinctrl_dev *pctldev,
unsigned group) unsigned int group)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
return pctrl->soc->groups[group].name; return pctrl->soc->groups[group].name;
} }
static int intel_get_group_pins(struct pinctrl_dev *pctldev, unsigned group, static int intel_get_group_pins(struct pinctrl_dev *pctldev, unsigned int group,
const unsigned **pins, unsigned *npins) const unsigned int **pins, unsigned int *npins)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
@ -288,7 +288,7 @@ static int intel_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
} }
static void intel_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s, static void intel_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
unsigned pin) unsigned int pin)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
void __iomem *padcfg; void __iomem *padcfg;
@ -347,7 +347,7 @@ static int intel_get_functions_count(struct pinctrl_dev *pctldev)
} }
static const char *intel_get_function_name(struct pinctrl_dev *pctldev, static const char *intel_get_function_name(struct pinctrl_dev *pctldev,
unsigned function) unsigned int function)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
@ -355,9 +355,9 @@ static const char *intel_get_function_name(struct pinctrl_dev *pctldev,
} }
static int intel_get_function_groups(struct pinctrl_dev *pctldev, static int intel_get_function_groups(struct pinctrl_dev *pctldev,
unsigned function, unsigned int function,
const char * const **groups, const char * const **groups,
unsigned * const ngroups) unsigned int * const ngroups)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
@ -366,8 +366,8 @@ static int intel_get_function_groups(struct pinctrl_dev *pctldev,
return 0; return 0;
} }
static int intel_pinmux_set_mux(struct pinctrl_dev *pctldev, unsigned function, static int intel_pinmux_set_mux(struct pinctrl_dev *pctldev,
unsigned group) unsigned int function, unsigned int group)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
const struct intel_pingroup *grp = &pctrl->soc->groups[group]; const struct intel_pingroup *grp = &pctrl->soc->groups[group];
@ -439,7 +439,7 @@ static void intel_gpio_set_gpio_mode(void __iomem *padcfg0)
static int intel_gpio_request_enable(struct pinctrl_dev *pctldev, static int intel_gpio_request_enable(struct pinctrl_dev *pctldev,
struct pinctrl_gpio_range *range, struct pinctrl_gpio_range *range,
unsigned pin) unsigned int pin)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
void __iomem *padcfg0; void __iomem *padcfg0;
@ -464,7 +464,7 @@ static int intel_gpio_request_enable(struct pinctrl_dev *pctldev,
static int intel_gpio_set_direction(struct pinctrl_dev *pctldev, static int intel_gpio_set_direction(struct pinctrl_dev *pctldev,
struct pinctrl_gpio_range *range, struct pinctrl_gpio_range *range,
unsigned pin, bool input) unsigned int pin, bool input)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
void __iomem *padcfg0; void __iomem *padcfg0;
@ -489,7 +489,7 @@ static const struct pinmux_ops intel_pinmux_ops = {
.gpio_set_direction = intel_gpio_set_direction, .gpio_set_direction = intel_gpio_set_direction,
}; };
static int intel_config_get(struct pinctrl_dev *pctldev, unsigned pin, static int intel_config_get(struct pinctrl_dev *pctldev, unsigned int pin,
unsigned long *config) unsigned long *config)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
@ -578,11 +578,11 @@ static int intel_config_get(struct pinctrl_dev *pctldev, unsigned pin,
return 0; return 0;
} }
static int intel_config_set_pull(struct intel_pinctrl *pctrl, unsigned pin, static int intel_config_set_pull(struct intel_pinctrl *pctrl, unsigned int pin,
unsigned long config) unsigned long config)
{ {
unsigned param = pinconf_to_config_param(config); unsigned int param = pinconf_to_config_param(config);
unsigned arg = pinconf_to_config_argument(config); unsigned int arg = pinconf_to_config_argument(config);
const struct intel_community *community; const struct intel_community *community;
void __iomem *padcfg1; void __iomem *padcfg1;
unsigned long flags; unsigned long flags;
@ -656,8 +656,8 @@ static int intel_config_set_pull(struct intel_pinctrl *pctrl, unsigned pin,
return ret; return ret;
} }
static int intel_config_set_debounce(struct intel_pinctrl *pctrl, unsigned pin, static int intel_config_set_debounce(struct intel_pinctrl *pctrl,
unsigned debounce) unsigned int pin, unsigned int debounce)
{ {
void __iomem *padcfg0, *padcfg2; void __iomem *padcfg0, *padcfg2;
unsigned long flags; unsigned long flags;
@ -703,8 +703,8 @@ exit_unlock:
return ret; return ret;
} }
static int intel_config_set(struct pinctrl_dev *pctldev, unsigned pin, static int intel_config_set(struct pinctrl_dev *pctldev, unsigned int pin,
unsigned long *configs, unsigned nconfigs) unsigned long *configs, unsigned int nconfigs)
{ {
struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev); struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
int i, ret; int i, ret;
@ -761,7 +761,7 @@ static const struct pinctrl_desc intel_pinctrl_desc = {
* automatically translated to pinctrl pin number. This function can be * automatically translated to pinctrl pin number. This function can be
* used to find out the corresponding pinctrl pin. * used to find out the corresponding pinctrl pin.
*/ */
static int intel_gpio_to_pin(struct intel_pinctrl *pctrl, unsigned offset, static int intel_gpio_to_pin(struct intel_pinctrl *pctrl, unsigned int offset,
const struct intel_community **community, const struct intel_community **community,
const struct intel_padgroup **padgrp) const struct intel_padgroup **padgrp)
{ {
@ -795,7 +795,7 @@ static int intel_gpio_to_pin(struct intel_pinctrl *pctrl, unsigned offset,
return -EINVAL; return -EINVAL;
} }
static int intel_gpio_get(struct gpio_chip *chip, unsigned offset) static int intel_gpio_get(struct gpio_chip *chip, unsigned int offset)
{ {
struct intel_pinctrl *pctrl = gpiochip_get_data(chip); struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
void __iomem *reg; void __iomem *reg;
@ -817,7 +817,8 @@ static int intel_gpio_get(struct gpio_chip *chip, unsigned offset)
return !!(padcfg0 & PADCFG0_GPIORXSTATE); return !!(padcfg0 & PADCFG0_GPIORXSTATE);
} }
static void intel_gpio_set(struct gpio_chip *chip, unsigned offset, int value) static void intel_gpio_set(struct gpio_chip *chip, unsigned int offset,
int value)
{ {
struct intel_pinctrl *pctrl = gpiochip_get_data(chip); struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
unsigned long flags; unsigned long flags;
@ -866,12 +867,12 @@ static int intel_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
return !!(padcfg0 & PADCFG0_GPIOTXDIS); return !!(padcfg0 & PADCFG0_GPIOTXDIS);
} }
static int intel_gpio_direction_input(struct gpio_chip *chip, unsigned offset) static int intel_gpio_direction_input(struct gpio_chip *chip, unsigned int offset)
{ {
return pinctrl_gpio_direction_input(chip->base + offset); return pinctrl_gpio_direction_input(chip->base + offset);
} }
static int intel_gpio_direction_output(struct gpio_chip *chip, unsigned offset, static int intel_gpio_direction_output(struct gpio_chip *chip, unsigned int offset,
int value) int value)
{ {
intel_gpio_set(chip, offset, value); intel_gpio_set(chip, offset, value);
@ -900,7 +901,7 @@ static void intel_gpio_irq_ack(struct irq_data *d)
pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp); pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp);
if (pin >= 0) { if (pin >= 0) {
unsigned gpp, gpp_offset, is_offset; unsigned int gpp, gpp_offset, is_offset;
gpp = padgrp->reg_num; gpp = padgrp->reg_num;
gpp_offset = padgroup_offset(padgrp, pin); gpp_offset = padgroup_offset(padgrp, pin);
@ -922,7 +923,7 @@ static void intel_gpio_irq_enable(struct irq_data *d)
pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp); pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp);
if (pin >= 0) { if (pin >= 0) {
unsigned gpp, gpp_offset, is_offset; unsigned int gpp, gpp_offset, is_offset;
unsigned long flags; unsigned long flags;
u32 value; u32 value;
@ -951,7 +952,7 @@ static void intel_gpio_irq_mask_unmask(struct irq_data *d, bool mask)
pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp); pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp);
if (pin >= 0) { if (pin >= 0) {
unsigned gpp, gpp_offset; unsigned int gpp, gpp_offset;
unsigned long flags; unsigned long flags;
void __iomem *reg; void __iomem *reg;
u32 value; u32 value;
@ -982,11 +983,11 @@ static void intel_gpio_irq_unmask(struct irq_data *d)
intel_gpio_irq_mask_unmask(d, false); intel_gpio_irq_mask_unmask(d, false);
} }
static int intel_gpio_irq_type(struct irq_data *d, unsigned type) static int intel_gpio_irq_type(struct irq_data *d, unsigned int type)
{ {
struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
struct intel_pinctrl *pctrl = gpiochip_get_data(gc); struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
unsigned pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL); unsigned int pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL);
unsigned long flags; unsigned long flags;
void __iomem *reg; void __iomem *reg;
u32 value; u32 value;
@ -1043,7 +1044,7 @@ static int intel_gpio_irq_wake(struct irq_data *d, unsigned int on)
{ {
struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
struct intel_pinctrl *pctrl = gpiochip_get_data(gc); struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
unsigned pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL); unsigned int pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL);
if (on) if (on)
enable_irq_wake(pctrl->irq); enable_irq_wake(pctrl->irq);
@ -1138,7 +1139,7 @@ static int intel_gpio_add_pin_ranges(struct intel_pinctrl *pctrl,
static unsigned intel_gpio_ngpio(const struct intel_pinctrl *pctrl) static unsigned intel_gpio_ngpio(const struct intel_pinctrl *pctrl)
{ {
const struct intel_community *community; const struct intel_community *community;
unsigned ngpio = 0; unsigned int ngpio = 0;
int i, j; int i, j;
for (i = 0; i < pctrl->ncommunities; i++) { for (i = 0; i < pctrl->ncommunities; i++) {
@ -1214,8 +1215,8 @@ static int intel_pinctrl_add_padgroups(struct intel_pinctrl *pctrl,
struct intel_community *community) struct intel_community *community)
{ {
struct intel_padgroup *gpps; struct intel_padgroup *gpps;
unsigned npins = community->npins; unsigned int npins = community->npins;
unsigned padown_num = 0; unsigned int padown_num = 0;
size_t ngpps, i; size_t ngpps, i;
if (community->gpps) if (community->gpps)
@ -1231,7 +1232,7 @@ static int intel_pinctrl_add_padgroups(struct intel_pinctrl *pctrl,
if (community->gpps) { if (community->gpps) {
gpps[i] = community->gpps[i]; gpps[i] = community->gpps[i];
} else { } else {
unsigned gpp_size = community->gpp_size; unsigned int gpp_size = community->gpp_size;
gpps[i].reg_num = i; gpps[i].reg_num = i;
gpps[i].base = community->pin_base + i * gpp_size; gpps[i].base = community->pin_base + i * gpp_size;
@ -1446,7 +1447,7 @@ int intel_pinctrl_probe_by_uid(struct platform_device *pdev)
EXPORT_SYMBOL_GPL(intel_pinctrl_probe_by_uid); EXPORT_SYMBOL_GPL(intel_pinctrl_probe_by_uid);
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static bool intel_pinctrl_should_save(struct intel_pinctrl *pctrl, unsigned pin) static bool intel_pinctrl_should_save(struct intel_pinctrl *pctrl, unsigned int pin)
{ {
const struct pin_desc *pd = pin_desc_get(pctrl->pctldev, pin); const struct pin_desc *pd = pin_desc_get(pctrl->pctldev, pin);
@ -1497,7 +1498,7 @@ int intel_pinctrl_suspend(struct device *dev)
for (i = 0; i < pctrl->ncommunities; i++) { for (i = 0; i < pctrl->ncommunities; i++) {
struct intel_community *community = &pctrl->communities[i]; struct intel_community *community = &pctrl->communities[i];
void __iomem *base; void __iomem *base;
unsigned gpp; unsigned int gpp;
base = community->regs + community->ie_offset; base = community->regs + community->ie_offset;
for (gpp = 0; gpp < community->ngpps; gpp++) for (gpp = 0; gpp < community->ngpps; gpp++)
@ -1515,7 +1516,7 @@ static void intel_gpio_irq_init(struct intel_pinctrl *pctrl)
for (i = 0; i < pctrl->ncommunities; i++) { for (i = 0; i < pctrl->ncommunities; i++) {
const struct intel_community *community; const struct intel_community *community;
void __iomem *base; void __iomem *base;
unsigned gpp; unsigned int gpp;
community = &pctrl->communities[i]; community = &pctrl->communities[i];
base = community->regs; base = community->regs;
@ -1579,7 +1580,7 @@ int intel_pinctrl_resume(struct device *dev)
for (i = 0; i < pctrl->ncommunities; i++) { for (i = 0; i < pctrl->ncommunities; i++) {
struct intel_community *community = &pctrl->communities[i]; struct intel_community *community = &pctrl->communities[i];
void __iomem *base; void __iomem *base;
unsigned gpp; unsigned int gpp;
base = community->regs + community->ie_offset; base = community->regs + community->ie_offset;
for (gpp = 0; gpp < community->ngpps; gpp++) { for (gpp = 0; gpp < community->ngpps; gpp++) {

View File

@ -27,10 +27,10 @@ struct device;
*/ */
struct intel_pingroup { struct intel_pingroup {
const char *name; const char *name;
const unsigned *pins; const unsigned int *pins;
size_t npins; size_t npins;
unsigned short mode; unsigned short mode;
const unsigned *modes; const unsigned int *modes;
}; };
/** /**
@ -58,11 +58,11 @@ struct intel_function {
* to specify them. * to specify them.
*/ */
struct intel_padgroup { struct intel_padgroup {
unsigned reg_num; unsigned int reg_num;
unsigned base; unsigned int base;
unsigned size; unsigned int size;
int gpio_base; int gpio_base;
unsigned padown_num; unsigned int padown_num;
}; };
/** /**
@ -98,17 +98,17 @@ struct intel_padgroup {
* pass custom @gpps and @ngpps instead. * pass custom @gpps and @ngpps instead.
*/ */
struct intel_community { struct intel_community {
unsigned barno; unsigned int barno;
unsigned padown_offset; unsigned int padown_offset;
unsigned padcfglock_offset; unsigned int padcfglock_offset;
unsigned hostown_offset; unsigned int hostown_offset;
unsigned is_offset; unsigned int is_offset;
unsigned ie_offset; unsigned int ie_offset;
unsigned pin_base; unsigned int pin_base;
unsigned gpp_size; unsigned int gpp_size;
unsigned gpp_num_padown_regs; unsigned int gpp_num_padown_regs;
size_t npins; size_t npins;
unsigned features; unsigned int features;
const struct intel_padgroup *gpps; const struct intel_padgroup *gpps;
size_t ngpps; size_t ngpps;
/* Reserved for the core driver */ /* Reserved for the core driver */