diff options
author | gushengxian <gushengxian@yulong.com> | 2021-05-26 05:16:10 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2021-07-26 07:33:04 +0200 |
commit | 3e0c6d15adeafa2afcb4c95c892bb5980c1430e6 (patch) | |
tree | 73a6a28db8b547072136ad9b903d9478046982da /arch | |
parent | alpha: fp_emul: avoid init/cleanup_module names (diff) | |
download | linux-3e0c6d15adeafa2afcb4c95c892bb5980c1430e6.tar.xz linux-3e0c6d15adeafa2afcb4c95c892bb5980c1430e6.zip |
alpha: Remove space between * and parameter name
'struct pcb_struct * pcb_va' should be 'struct pcb_struct *pcb_va'.
Signed-off-by: gushengxian <gushengxian@yulong.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/boot/bootp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/boot/bootp.c b/arch/alpha/boot/bootp.c index 00266e6e1b71..b4faba2432d5 100644 --- a/arch/alpha/boot/bootp.c +++ b/arch/alpha/boot/bootp.c @@ -23,7 +23,7 @@ #include "ksize.h" extern unsigned long switch_to_osf_pal(unsigned long nr, - struct pcb_struct * pcb_va, struct pcb_struct * pcb_pa, + struct pcb_struct *pcb_va, struct pcb_struct *pcb_pa, unsigned long *vptb); extern void move_stack(unsigned long new_stack); |