Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 178170
b: refs/heads/master
c: 3d9b740
h: refs/heads/master
v: v3
  • Loading branch information
Gautham R Shenoy authored and Benjamin Herrenschmidt committed Dec 18, 2009
1 parent ce50388 commit f0adeba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9edb232d3b0848457a83a5b697f55264542892f
refs/heads/master: 3d9b740b2d8d73795d745a46eabd55479ee68dcc
6 changes: 4 additions & 2 deletions trunk/arch/powerpc/platforms/pseries/dlpar.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,12 +346,14 @@ int dlpar_release_drc(u32 drc_index)

static DEFINE_MUTEX(pseries_cpu_hotplug_mutex);

void cpu_hotplug_driver_lock()
void cpu_hotplug_driver_lock(void)
__acquires(pseries_cpu_hotplug_mutex)
{
mutex_lock(&pseries_cpu_hotplug_mutex);
}

void cpu_hotplug_driver_unlock()
void cpu_hotplug_driver_unlock(void)
__releases(pseries_cpu_hotplug_mutex)
{
mutex_unlock(&pseries_cpu_hotplug_mutex);
}
Expand Down

0 comments on commit f0adeba

Please sign in to comment.