Skip to content

Commit

Permalink
cpuidle-haltpoll: Fix small typo
Browse files Browse the repository at this point in the history
Fix a spelling typo in cpuidle-haltpoll.c.

Signed-off-by: Yihao Wu <wuyihao@linux.alibaba.com>
[ rjw: Subject & changelog ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Yihao Wu authored and Rafael J. Wysocki committed Apr 8, 2020
1 parent dd52551 commit 4902f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/cpuidle/cpuidle-haltpoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void haltpoll_uninit(void)
haltpoll_cpuidle_devices = NULL;
}

static bool haltpool_want(void)
static bool haltpoll_want(void)
{
return kvm_para_has_hint(KVM_HINTS_REALTIME) || force;
}
Expand All @@ -110,7 +110,7 @@ static int __init haltpoll_init(void)

cpuidle_poll_state_init(drv);

if (!kvm_para_available() || !haltpool_want())
if (!kvm_para_available() || !haltpoll_want())
return -ENODEV;

ret = cpuidle_register_driver(drv);
Expand Down

0 comments on commit 4902f7f

Please sign in to comment.