pinctrl: some typo fixes

Minor copyedits.

Signed-off-by: Dong Aisheng <dong.aisheng@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Dong Aisheng 2011-12-20 17:51:59 +08:00 committed by Linus Walleij
parent 3bece55aa5
commit e6337c3c96
2 changed files with 6 additions and 6 deletions

View file

@ -217,7 +217,7 @@ changing pin configuration in the pin controller ops like this:
#include <linux/pinctrl/pinconf.h> #include <linux/pinctrl/pinconf.h>
#include "platform_x_pindefs.h" #include "platform_x_pindefs.h"
int foo_pin_config_get(struct pinctrl_dev *pctldev, static int foo_pin_config_get(struct pinctrl_dev *pctldev,
unsigned offset, unsigned offset,
unsigned long *config) unsigned long *config)
{ {
@ -228,7 +228,7 @@ int foo_pin_config_get(struct pinctrl_dev *pctldev,
*config = (unsigned long) conf; *config = (unsigned long) conf;
} }
int foo_pin_config_set(struct pinctrl_dev *pctldev, static int foo_pin_config_set(struct pinctrl_dev *pctldev,
unsigned offset, unsigned offset,
unsigned long config) unsigned long config)
{ {
@ -241,14 +241,14 @@ int foo_pin_config_set(struct pinctrl_dev *pctldev,
} }
} }
int foo_pin_config_group_get (struct pinctrl_dev *pctldev, static int foo_pin_config_group_get (struct pinctrl_dev *pctldev,
unsigned selector, unsigned selector,
unsigned long *config) unsigned long *config)
{ {
... ...
} }
int foo_pin_config_group_set (struct pinctrl_dev *pctldev, static int foo_pin_config_group_set (struct pinctrl_dev *pctldev,
unsigned selector, unsigned selector,
unsigned long config) unsigned long config)
{ {
@ -819,7 +819,7 @@ it even more compact which assumes you want to use pinctrl-foo and position
0 for mapping, for example: 0 for mapping, for example:
static struct pinmux_map __initdata pmx_mapping[] = { static struct pinmux_map __initdata pmx_mapping[] = {
PINMUX_MAP_PRIMARY("I2CMAP", "i2c0", "foo-i2c.0"), PINMUX_MAP("I2CMAP", "pinctrl-foo", "i2c0", "foo-i2c.0"),
}; };

View file

@ -342,7 +342,7 @@ EXPORT_SYMBOL_GPL(pinmux_gpio_direction_output);
* Only call this once during initialization of your machine, the function is * Only call this once during initialization of your machine, the function is
* tagged as __init and won't be callable after init has completed. The map * tagged as __init and won't be callable after init has completed. The map
* passed into this function will be owned by the pinmux core and cannot be * passed into this function will be owned by the pinmux core and cannot be
* free:d. * freed.
*/ */
int __init pinmux_register_mappings(struct pinmux_map const *maps, int __init pinmux_register_mappings(struct pinmux_map const *maps,
unsigned num_maps) unsigned num_maps)