staging: mt7621-pinctrl: align function parameters in some functions
Function parameters along the code has different alignment styles. Just unify all of them making style consistent. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e5d66a1815
commit
d756d387d4
|
@ -76,8 +76,8 @@ static int rt2880_get_group_pins(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static void rt2880_pinctrl_dt_free_map(struct pinctrl_dev *pctrldev,
|
||||
struct pinctrl_map *map,
|
||||
unsigned int num_maps)
|
||||
struct pinctrl_map *map,
|
||||
unsigned int num_maps)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -96,8 +96,8 @@ static void rt2880_pinctrl_pin_dbg_show(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static void rt2880_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctrldev,
|
||||
struct device_node *np,
|
||||
struct pinctrl_map **map)
|
||||
struct device_node *np,
|
||||
struct pinctrl_map **map)
|
||||
{
|
||||
const char *function;
|
||||
int func = of_property_read_string(np, "ralink,function", &function);
|
||||
|
@ -121,9 +121,9 @@ static void rt2880_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static int rt2880_pinctrl_dt_node_to_map(struct pinctrl_dev *pctrldev,
|
||||
struct device_node *np_config,
|
||||
struct pinctrl_map **map,
|
||||
unsigned int *num_maps)
|
||||
struct device_node *np_config,
|
||||
struct pinctrl_map **map,
|
||||
unsigned int *num_maps)
|
||||
{
|
||||
int max_maps = 0;
|
||||
struct pinctrl_map *tmp;
|
||||
|
@ -169,7 +169,7 @@ static int rt2880_pmx_func_count(struct pinctrl_dev *pctrldev)
|
|||
}
|
||||
|
||||
static const char *rt2880_pmx_func_name(struct pinctrl_dev *pctrldev,
|
||||
unsigned int func)
|
||||
unsigned int func)
|
||||
{
|
||||
struct rt2880_priv *p = pinctrl_dev_get_drvdata(pctrldev);
|
||||
|
||||
|
@ -177,9 +177,9 @@ static const char *rt2880_pmx_func_name(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static int rt2880_pmx_group_get_groups(struct pinctrl_dev *pctrldev,
|
||||
unsigned int func,
|
||||
const char * const **groups,
|
||||
unsigned int * const num_groups)
|
||||
unsigned int func,
|
||||
const char * const **groups,
|
||||
unsigned int * const num_groups)
|
||||
{
|
||||
struct rt2880_priv *p = pinctrl_dev_get_drvdata(pctrldev);
|
||||
|
||||
|
@ -194,8 +194,7 @@ static int rt2880_pmx_group_get_groups(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static int rt2880_pmx_group_enable(struct pinctrl_dev *pctrldev,
|
||||
unsigned int func,
|
||||
unsigned int group)
|
||||
unsigned int func, unsigned int group)
|
||||
{
|
||||
struct rt2880_priv *p = pinctrl_dev_get_drvdata(pctrldev);
|
||||
u32 mode = 0;
|
||||
|
@ -239,8 +238,8 @@ static int rt2880_pmx_group_enable(struct pinctrl_dev *pctrldev,
|
|||
}
|
||||
|
||||
static int rt2880_pmx_group_gpio_request_enable(struct pinctrl_dev *pctrldev,
|
||||
struct pinctrl_gpio_range *range,
|
||||
unsigned int pin)
|
||||
struct pinctrl_gpio_range *range,
|
||||
unsigned int pin)
|
||||
{
|
||||
struct rt2880_priv *p = pinctrl_dev_get_drvdata(pctrldev);
|
||||
|
||||
|
|
Loading…
Reference in New Issue