Commit d84970bbaf9a09b3fc60c18ee6d59bc9cb4c3b8a

Authored by Nicolas Pitre
Committed by Linus Torvalds
1 parent 97fd75b7b8

kernel/cpu_pm.c: fix various typos

Signed-off-by: Nicolas Pitre <nico@linaro.org>
Acked-by: Colin Cross <ccross@android.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 8 additions and 8 deletions Side-by-side Diff

... ... @@ -81,7 +81,7 @@
81 81 EXPORT_SYMBOL_GPL(cpu_pm_unregister_notifier);
82 82  
83 83 /**
84   - * cpm_pm_enter - CPU low power entry notifier
  84 + * cpu_pm_enter - CPU low power entry notifier
85 85 *
86 86 * Notifies listeners that a single CPU is entering a low power state that may
87 87 * cause some blocks in the same power domain as the cpu to reset.
... ... @@ -89,7 +89,7 @@
89 89 * Must be called on the affected CPU with interrupts disabled. Platform is
90 90 * responsible for ensuring that cpu_pm_enter is not called twice on the same
91 91 * CPU before cpu_pm_exit is called. Notified drivers can include VFP
92   - * co-processor, interrupt controller and it's PM extensions, local CPU
  92 + * co-processor, interrupt controller and its PM extensions, local CPU
93 93 * timers context save/restore which shouldn't be interrupted. Hence it
94 94 * must be called with interrupts disabled.
95 95 *
96 96  
... ... @@ -115,13 +115,13 @@
115 115 EXPORT_SYMBOL_GPL(cpu_pm_enter);
116 116  
117 117 /**
118   - * cpm_pm_exit - CPU low power exit notifier
  118 + * cpu_pm_exit - CPU low power exit notifier
119 119 *
120 120 * Notifies listeners that a single CPU is exiting a low power state that may
121 121 * have caused some blocks in the same power domain as the cpu to reset.
122 122 *
123 123 * Notified drivers can include VFP co-processor, interrupt controller
124   - * and it's PM extensions, local CPU timers context save/restore which
  124 + * and its PM extensions, local CPU timers context save/restore which
125 125 * shouldn't be interrupted. Hence it must be called with interrupts disabled.
126 126 *
127 127 * Return conditions are same as __raw_notifier_call_chain.
... ... @@ -139,7 +139,7 @@
139 139 EXPORT_SYMBOL_GPL(cpu_pm_exit);
140 140  
141 141 /**
142   - * cpm_cluster_pm_enter - CPU cluster low power entry notifier
  142 + * cpu_cluster_pm_enter - CPU cluster low power entry notifier
143 143 *
144 144 * Notifies listeners that all cpus in a power domain are entering a low power
145 145 * state that may cause some blocks in the same power domain to reset.
... ... @@ -147,7 +147,7 @@
147 147 * Must be called after cpu_pm_enter has been called on all cpus in the power
148 148 * domain, and before cpu_pm_exit has been called on any cpu in the power
149 149 * domain. Notified drivers can include VFP co-processor, interrupt controller
150   - * and it's PM extensions, local CPU timers context save/restore which
  150 + * and its PM extensions, local CPU timers context save/restore which
151 151 * shouldn't be interrupted. Hence it must be called with interrupts disabled.
152 152 *
153 153 * Must be called with interrupts disabled.
... ... @@ -174,7 +174,7 @@
174 174 EXPORT_SYMBOL_GPL(cpu_cluster_pm_enter);
175 175  
176 176 /**
177   - * cpm_cluster_pm_exit - CPU cluster low power exit notifier
  177 + * cpu_cluster_pm_exit - CPU cluster low power exit notifier
178 178 *
179 179 * Notifies listeners that all cpus in a power domain are exiting form a
180 180 * low power state that may have caused some blocks in the same power domain
... ... @@ -183,7 +183,7 @@
183 183 * Must be called after cpu_pm_exit has been called on all cpus in the power
184 184 * domain, and before cpu_pm_exit has been called on any cpu in the power
185 185 * domain. Notified drivers can include VFP co-processor, interrupt controller
186   - * and it's PM extensions, local CPU timers context save/restore which
  186 + * and its PM extensions, local CPU timers context save/restore which
187 187 * shouldn't be interrupted. Hence it must be called with interrupts disabled.
188 188 *
189 189 * Return conditions are same as __raw_notifier_call_chain.