diff options
author | Yang Wei <yang.wei9@zte.com.cn> | 2019-03-04 17:33:28 +0300 |
---|---|---|
committer | Greentime Hu <greentime@andestech.com> | 2019-05-07 12:52:10 +0300 |
commit | 0fcef555abdc155dbd2cba24ac1a0dd508e8dc70 (patch) | |
tree | aced8b34cb2b2e1cd30825e740c393c4c3ee4430 /arch/nds32/mm | |
parent | 95b6204dbf703f2b6da27cec4c8280f43da8977d (diff) | |
download | linux-0fcef555abdc155dbd2cba24ac1a0dd508e8dc70.tar.xz |
nds32: fix semicolon code style issue
Delete superfluous semicolons.
Signed-off-by: Yang Wei <yang.wei9@zte.com.cn>
Acked-by: Greentime Hu <greentime@andestech.com>
Signed-off-by: Greentime Hu <greentime@andestech.com>
Diffstat (limited to 'arch/nds32/mm')
-rw-r--r-- | arch/nds32/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nds32/mm/init.c b/arch/nds32/mm/init.c index 1d03633f89a9..f32e40e36fe1 100644 --- a/arch/nds32/mm/init.c +++ b/arch/nds32/mm/init.c @@ -272,7 +272,7 @@ void __set_fixmap(enum fixed_addresses idx, BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses); - pte = (pte_t *)&fixmap_pmd_p[pte_index(addr)];; + pte = (pte_t *)&fixmap_pmd_p[pte_index(addr)]; if (pgprot_val(flags)) { set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags)); |