Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8040bda3 authored by Valentina Manea's avatar Valentina Manea Committed by Michael Ellerman
Browse files

powerpc: place EXPORT_SYMBOL macro right after declaration



This fixes the following checkpatch.pl warnings:

WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
+EXPORT_SYMBOL(kmap_prot);

WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
+EXPORT_SYMBOL(kmap_pte);

Signed-off-by: default avatarValentina Manea <valentina.manea.m@gmail.com>
Signed-off-by: default avatarMichael Ellerman <michael@ellerman.id.au>
parent 09652b00
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -66,10 +66,9 @@ unsigned long long memory_limit;

#ifdef CONFIG_HIGHMEM
pte_t *kmap_pte;
EXPORT_SYMBOL(kmap_pte);
pgprot_t kmap_prot;

EXPORT_SYMBOL(kmap_prot);
EXPORT_SYMBOL(kmap_pte);

static inline pte_t *virt_to_kpte(unsigned long vaddr)
{