Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 367259
b: refs/heads/master
c: 39a90ca
h: refs/heads/master
i:
  367257: 0f60d40
  367255: de491dd
v: v3
  • Loading branch information
Mark Rutland authored and Catalin Marinas committed Apr 25, 2013
1 parent 85b6296 commit 92b5a3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 4339e3f389081ea90e230a785bdbe10eccd02b71
refs/heads/master: 39a90ca639db5fcd33064ddf754793ec85764239
8 changes: 4 additions & 4 deletions trunk/arch/arm64/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,11 +245,11 @@ static const struct smp_enable_ops *smp_enable_ops[NR_CPUS];

static const struct smp_enable_ops * __init smp_get_enable_ops(const char *name)
{
const struct smp_enable_ops *ops = enable_ops[0];
const struct smp_enable_ops **ops = enable_ops;

while (ops) {
if (!strcmp(name, ops->name))
return ops;
while (*ops) {
if (!strcmp(name, (*ops)->name))
return *ops;

ops++;
}
Expand Down

0 comments on commit 92b5a3d

Please sign in to comment.