diff options
| -rw-r--r-- | Documentation/pinctrl.txt | 2 | ||||
| -rw-r--r-- | drivers/pinctrl/pinmux.c | 9 |
2 files changed, 3 insertions, 8 deletions
diff --git a/Documentation/pinctrl.txt b/Documentation/pinctrl.txt index 5324d3199f34..150fd3833d0b 100644 --- a/Documentation/pinctrl.txt +++ b/Documentation/pinctrl.txt | |||
| @@ -1024,7 +1024,7 @@ it, disables and releases it, and muxes it in on the pins defined by group B: | |||
| 1024 | 1024 | ||
| 1025 | foo_switch() | 1025 | foo_switch() |
| 1026 | { | 1026 | { |
| 1027 | struct pinmux pmx; | 1027 | struct pinmux *pmx; |
| 1028 | 1028 | ||
| 1029 | /* Enable on position A */ | 1029 | /* Enable on position A */ |
| 1030 | pmx = pinmux_get(&device, "spi0-pos-A"); | 1030 | pmx = pinmux_get(&device, "spi0-pos-A"); |
diff --git a/drivers/pinctrl/pinmux.c b/drivers/pinctrl/pinmux.c index 0b22037965b9..f4f8c7e4b1c8 100644 --- a/drivers/pinctrl/pinmux.c +++ b/drivers/pinctrl/pinmux.c | |||
| @@ -53,11 +53,6 @@ struct pinmux_group { | |||
| 53 | * @dev: the device using this pinmux | 53 | * @dev: the device using this pinmux |
| 54 | * @usecount: the number of active users of this mux setting, used to keep | 54 | * @usecount: the number of active users of this mux setting, used to keep |
| 55 | * track of nested use cases | 55 | * track of nested use cases |
| 56 | * @pins: an array of discrete physical pins used in this mapping, taken | ||
| 57 | * from the global pin enumeration space (copied from pinmux map) | ||
| 58 | * @num_pins: the number of pins in this mapping array, i.e. the number of | ||
| 59 | * elements in .pins so we can iterate over that array (copied from | ||
| 60 | * pinmux map) | ||
| 61 | * @pctldev: pin control device handling this pinmux | 56 | * @pctldev: pin control device handling this pinmux |
| 62 | * @func_selector: the function selector for the pinmux device handling | 57 | * @func_selector: the function selector for the pinmux device handling |
| 63 | * this pinmux | 58 | * this pinmux |
| @@ -409,7 +404,7 @@ int __init pinmux_register_mappings(struct pinmux_map const *maps, | |||
| 409 | } | 404 | } |
| 410 | 405 | ||
| 411 | /** | 406 | /** |
| 412 | * acquire_pins() - acquire all the pins for a certain funcion on a pinmux | 407 | * acquire_pins() - acquire all the pins for a certain function on a pinmux |
| 413 | * @pctldev: the device to take the pins on | 408 | * @pctldev: the device to take the pins on |
| 414 | * @func_selector: the function selector to acquire the pins for | 409 | * @func_selector: the function selector to acquire the pins for |
| 415 | * @group_selector: the group selector containing the pins to acquire | 410 | * @group_selector: the group selector containing the pins to acquire |
| @@ -455,7 +450,7 @@ static int acquire_pins(struct pinctrl_dev *pctldev, | |||
| 455 | 450 | ||
| 456 | /** | 451 | /** |
| 457 | * release_pins() - release pins taken by earlier acquirement | 452 | * release_pins() - release pins taken by earlier acquirement |
| 458 | * @pctldev: the device to free the pinx on | 453 | * @pctldev: the device to free the pins on |
| 459 | * @group_selector: the group selector containing the pins to free | 454 | * @group_selector: the group selector containing the pins to free |
| 460 | */ | 455 | */ |
| 461 | static void release_pins(struct pinctrl_dev *pctldev, | 456 | static void release_pins(struct pinctrl_dev *pctldev, |
