diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2018-01-10 07:10:14 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-01-16 13:47:16 +0100 |
commit | fbadeb6bb1685f7a53869e240284ff083f5edaa6 (patch) | |
tree | 2e47525687769c57f78a65ae0aea84c8572e81a0 /arch/powerpc/kernel/setup-common.c | |
parent | powerpc: Make newline in cpuinfo unconditional (diff) | |
download | linux-fbadeb6bb1685f7a53869e240284ff083f5edaa6.tar.xz linux-fbadeb6bb1685f7a53869e240284ff083f5edaa6.zip |
powerpc: Cosmetic cleanup of cpuinfo_op
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to '')
-rw-r--r-- | arch/powerpc/kernel/setup-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 44d53b33c533..24da91768133 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c @@ -387,10 +387,10 @@ static void c_stop(struct seq_file *m, void *v) } const struct seq_operations cpuinfo_op = { - .start =c_start, - .next = c_next, - .stop = c_stop, - .show = show_cpuinfo, + .start = c_start, + .next = c_next, + .stop = c_stop, + .show = show_cpuinfo, }; void __init check_for_initrd(void) |