diff options
Diffstat (limited to 'drivers/pinctrl/core.h')
-rw-r--r-- | drivers/pinctrl/core.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/pinctrl/core.h b/drivers/pinctrl/core.h index 8a8b02e9c18e..7a89888fce94 100644 --- a/drivers/pinctrl/core.h +++ b/drivers/pinctrl/core.h | |||
@@ -28,8 +28,8 @@ struct pinctrl_gpio_range; | |||
28 | * @owner: module providing the pin controller, used for refcounting | 28 | * @owner: module providing the pin controller, used for refcounting |
29 | * @driver_data: driver data for drivers registering to the pin controller | 29 | * @driver_data: driver data for drivers registering to the pin controller |
30 | * subsystem | 30 | * subsystem |
31 | * @pinmux_hogs_lock: lock for the pinmux hog list | 31 | * @pinctrl_hogs_lock: lock for the pin control hog list |
32 | * @pinmux_hogs: list of pinmux maps hogged by this device | 32 | * @pinctrl_hogs: list of pin control maps hogged by this device |
33 | */ | 33 | */ |
34 | struct pinctrl_dev { | 34 | struct pinctrl_dev { |
35 | struct list_head node; | 35 | struct list_head node; |
@@ -45,8 +45,8 @@ struct pinctrl_dev { | |||
45 | struct dentry *device_root; | 45 | struct dentry *device_root; |
46 | #endif | 46 | #endif |
47 | #ifdef CONFIG_PINMUX | 47 | #ifdef CONFIG_PINMUX |
48 | struct mutex pinmux_hogs_lock; | 48 | struct mutex pinctrl_hogs_lock; |
49 | struct list_head pinmux_hogs; | 49 | struct list_head pinctrl_hogs; |
50 | #endif | 50 | #endif |
51 | }; | 51 | }; |
52 | 52 | ||