diff options
author | gushengxian <gushengxian@yulong.com> | 2021-05-26 06:16:10 +0300 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2021-07-26 08:33:04 +0300 |
commit | 3e0c6d15adeafa2afcb4c95c892bb5980c1430e6 (patch) | |
tree | 73a6a28db8b547072136ad9b903d9478046982da | |
parent | ee3e9fa29e8b2553097009dac270cbed0f03f6d2 (diff) | |
download | linux-3e0c6d15adeafa2afcb4c95c892bb5980c1430e6.tar.xz |
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>
-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); |