pinctrl: zynq: Fix warnings in the driver
This patch fixes the below warning --> Prefer 'unsigned int' to bare use of 'unsigned'. --> line over 80 characters. --> Prefer 'unsigned int **' to bare use of 'unsigned **'. Signed-off-by: Nava kishore Manne <navam@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4cb4142ba0
commit
6c2c9bd27c
|
@ -62,7 +62,7 @@ struct zynq_pinctrl {
|
||||||
struct zynq_pctrl_group {
|
struct zynq_pctrl_group {
|
||||||
const char *name;
|
const char *name;
|
||||||
const unsigned int *pins;
|
const unsigned int *pins;
|
||||||
const unsigned npins;
|
const unsigned int npins;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -841,7 +841,7 @@ static int zynq_pctrl_get_groups_count(struct pinctrl_dev *pctldev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *zynq_pctrl_get_group_name(struct pinctrl_dev *pctldev,
|
static const char *zynq_pctrl_get_group_name(struct pinctrl_dev *pctldev,
|
||||||
unsigned selector)
|
unsigned int selector)
|
||||||
{
|
{
|
||||||
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
|
||||||
|
@ -849,9 +849,9 @@ static const char *zynq_pctrl_get_group_name(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
|
static int zynq_pctrl_get_group_pins(struct pinctrl_dev *pctldev,
|
||||||
unsigned selector,
|
unsigned int selector,
|
||||||
const unsigned **pins,
|
const unsigned int **pins,
|
||||||
unsigned *num_pins)
|
unsigned int *num_pins)
|
||||||
{
|
{
|
||||||
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
|
||||||
|
@ -878,7 +878,7 @@ static int zynq_pmux_get_functions_count(struct pinctrl_dev *pctldev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *zynq_pmux_get_function_name(struct pinctrl_dev *pctldev,
|
static const char *zynq_pmux_get_function_name(struct pinctrl_dev *pctldev,
|
||||||
unsigned selector)
|
unsigned int selector)
|
||||||
{
|
{
|
||||||
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
|
||||||
|
@ -886,7 +886,7 @@ static const char *zynq_pmux_get_function_name(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pmux_get_function_groups(struct pinctrl_dev *pctldev,
|
static int zynq_pmux_get_function_groups(struct pinctrl_dev *pctldev,
|
||||||
unsigned selector,
|
unsigned int selector,
|
||||||
const char * const **groups,
|
const char * const **groups,
|
||||||
unsigned * const num_groups)
|
unsigned * const num_groups)
|
||||||
{
|
{
|
||||||
|
@ -898,8 +898,8 @@ static int zynq_pmux_get_function_groups(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pinmux_set_mux(struct pinctrl_dev *pctldev,
|
static int zynq_pinmux_set_mux(struct pinctrl_dev *pctldev,
|
||||||
unsigned function,
|
unsigned int function,
|
||||||
unsigned group)
|
unsigned int group)
|
||||||
{
|
{
|
||||||
int i, ret;
|
int i, ret;
|
||||||
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
@ -986,8 +986,8 @@ static const struct pinconf_generic_params zynq_dt_params[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_DEBUG_FS
|
#ifdef CONFIG_DEBUG_FS
|
||||||
static const struct pin_config_item zynq_conf_items[ARRAY_SIZE(zynq_dt_params)] = {
|
static const struct pin_config_item zynq_conf_items[ARRAY_SIZE(zynq_dt_params)]
|
||||||
PCONFDUMP(PIN_CONFIG_IOSTANDARD, "IO-standard", NULL, true),
|
= { PCONFDUMP(PIN_CONFIG_IOSTANDARD, "IO-standard", NULL, true),
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -997,7 +997,7 @@ static unsigned int zynq_pinconf_iostd_get(u32 reg)
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pinconf_cfg_get(struct pinctrl_dev *pctldev,
|
static int zynq_pinconf_cfg_get(struct pinctrl_dev *pctldev,
|
||||||
unsigned pin,
|
unsigned int pin,
|
||||||
unsigned long *config)
|
unsigned long *config)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
@ -1054,9 +1054,9 @@ static int zynq_pinconf_cfg_get(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pinconf_cfg_set(struct pinctrl_dev *pctldev,
|
static int zynq_pinconf_cfg_set(struct pinctrl_dev *pctldev,
|
||||||
unsigned pin,
|
unsigned int pin,
|
||||||
unsigned long *configs,
|
unsigned long *configs,
|
||||||
unsigned num_configs)
|
unsigned int num_configs)
|
||||||
{
|
{
|
||||||
int i, ret;
|
int i, ret;
|
||||||
u32 reg;
|
u32 reg;
|
||||||
|
@ -1130,9 +1130,9 @@ static int zynq_pinconf_cfg_set(struct pinctrl_dev *pctldev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynq_pinconf_group_set(struct pinctrl_dev *pctldev,
|
static int zynq_pinconf_group_set(struct pinctrl_dev *pctldev,
|
||||||
unsigned selector,
|
unsigned int selector,
|
||||||
unsigned long *configs,
|
unsigned long *configs,
|
||||||
unsigned num_configs)
|
unsigned int num_configs)
|
||||||
{
|
{
|
||||||
int i, ret;
|
int i, ret;
|
||||||
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
struct zynq_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
|
Loading…
Reference in New Issue