mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
ARM: OMAP2+: fix spellint typo
Change the comment typo: "ununsed" -> "unused". Signed-off-by: Wang Qing <wangqing@vivo.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
915769a8af
commit
320f6f90cb
1 changed files with 2 additions and 2 deletions
|
@ -1299,7 +1299,7 @@ int clkdm_hwmod_disable(struct clockdomain *clkdm, struct omap_hwmod *oh)
|
||||||
* Due to a suspend or hibernation operation, the state of the registers
|
* Due to a suspend or hibernation operation, the state of the registers
|
||||||
* controlling this clkdm will be lost, save their context.
|
* controlling this clkdm will be lost, save their context.
|
||||||
*/
|
*/
|
||||||
static int _clkdm_save_context(struct clockdomain *clkdm, void *ununsed)
|
static int _clkdm_save_context(struct clockdomain *clkdm, void *unused)
|
||||||
{
|
{
|
||||||
if (!arch_clkdm || !arch_clkdm->clkdm_save_context)
|
if (!arch_clkdm || !arch_clkdm->clkdm_save_context)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
@ -1312,7 +1312,7 @@ static int _clkdm_save_context(struct clockdomain *clkdm, void *ununsed)
|
||||||
*
|
*
|
||||||
* Restore the register values for this clockdomain.
|
* Restore the register values for this clockdomain.
|
||||||
*/
|
*/
|
||||||
static int _clkdm_restore_context(struct clockdomain *clkdm, void *ununsed)
|
static int _clkdm_restore_context(struct clockdomain *clkdm, void *unused)
|
||||||
{
|
{
|
||||||
if (!arch_clkdm || !arch_clkdm->clkdm_restore_context)
|
if (!arch_clkdm || !arch_clkdm->clkdm_restore_context)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue