Skip to content

Commit

Permalink
arm64: remove redundant "psci:" prefixes
Browse files Browse the repository at this point in the history
Since 652af89 "arm64: factor out spin-table
boot method" psci prefix's been introduced. We have a common pr_fmt, so clean
them up.

Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
Vladimir Murzin authored and Catalin Marinas committed Feb 28, 2014
1 parent 7363590 commit 288ac26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm64/kernel/psci.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ static int cpu_psci_cpu_boot(unsigned int cpu)
{
int err = psci_ops.cpu_on(cpu_logical_map(cpu), __pa(secondary_entry));
if (err)
pr_err("psci: failed to boot CPU%d (%d)\n", cpu, err);
pr_err("failed to boot CPU%d (%d)\n", cpu, err);

return err;
}
Expand All @@ -278,7 +278,7 @@ static void cpu_psci_cpu_die(unsigned int cpu)

ret = psci_ops.cpu_off(state);

pr_crit("psci: unable to power off CPU%u (%d)\n", cpu, ret);
pr_crit("unable to power off CPU%u (%d)\n", cpu, ret);
}
#endif

Expand Down

0 comments on commit 288ac26

Please sign in to comment.