diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-08 05:37:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-08 05:37:24 -0400 |
commit | 8a9e838f59115e55ca206fb5f0b567d7b3540517 (patch) | |
tree | 4182bc74544fbc21b49c0b5cbcbe21686e8da1af | |
parent | f8e4fae2e79d2d293fc490ede87be44c9b215d9e (diff) | |
parent | 1742b630e43a6ccca67cf634704e8b76d128947f (diff) |
Merge tag 'for-linus-20141006' of git://github.com/sctscore/linux-off
Pull S+core updates from Lennox Wu:
"Three of the patches are for building allmodconfig, and the others are
for removing useless flags"
* tag 'for-linus-20141006' of git://github.com/sctscore/linux-off:
score: Remove GENERIC_HAS_IOMAP
arch/score/include/asm/Kbuild: Add generic "serial.h"
score: remove deprecated IRQF_DISABLED
arch/score/mm/cache.c: Export 'flush_icache_range'
arch: score: Export necessary symbols in related files
-rw-r--r-- | arch/score/include/asm/Kbuild | 1 | ||||
-rw-r--r-- | arch/score/kernel/time.c | 2 | ||||
-rw-r--r-- | arch/score/lib/checksum_copy.c | 1 | ||||
-rw-r--r-- | arch/score/mm/cache.c | 2 |
4 files changed, 5 insertions, 1 deletions
diff --git a/arch/score/include/asm/Kbuild b/arch/score/include/asm/Kbuild index aad209199f7e..d26c48fc93c9 100644 --- a/arch/score/include/asm/Kbuild +++ b/arch/score/include/asm/Kbuild | |||
@@ -11,3 +11,4 @@ generic-y += preempt.h | |||
11 | generic-y += scatterlist.h | 11 | generic-y += scatterlist.h |
12 | generic-y += trace_clock.h | 12 | generic-y += trace_clock.h |
13 | generic-y += xor.h | 13 | generic-y += xor.h |
14 | generic-y += serial.h | ||
diff --git a/arch/score/kernel/time.c b/arch/score/kernel/time.c index f0a43affb201..24770cd9b473 100644 --- a/arch/score/kernel/time.c +++ b/arch/score/kernel/time.c | |||
@@ -41,7 +41,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
41 | 41 | ||
42 | static struct irqaction timer_irq = { | 42 | static struct irqaction timer_irq = { |
43 | .handler = timer_interrupt, | 43 | .handler = timer_interrupt, |
44 | .flags = IRQF_DISABLED | IRQF_TIMER, | 44 | .flags = IRQF_TIMER, |
45 | .name = "timer", | 45 | .name = "timer", |
46 | }; | 46 | }; |
47 | 47 | ||
diff --git a/arch/score/lib/checksum_copy.c b/arch/score/lib/checksum_copy.c index 04565dd3ded8..9b770b30e8a5 100644 --- a/arch/score/lib/checksum_copy.c +++ b/arch/score/lib/checksum_copy.c | |||
@@ -50,3 +50,4 @@ unsigned int csum_partial_copy_from_user(const char *src, char *dst, | |||
50 | 50 | ||
51 | return csum_partial(dst, len, sum); | 51 | return csum_partial(dst, len, sum); |
52 | } | 52 | } |
53 | EXPORT_SYMBOL(csum_partial_copy_from_user); | ||
diff --git a/arch/score/mm/cache.c b/arch/score/mm/cache.c index f85ec1a7c88e..b4bcfd3e8393 100644 --- a/arch/score/mm/cache.c +++ b/arch/score/mm/cache.c | |||
@@ -72,6 +72,7 @@ void flush_dcache_page(struct page *page) | |||
72 | addr = (unsigned long) page_address(page); | 72 | addr = (unsigned long) page_address(page); |
73 | flush_data_cache_page(addr); | 73 | flush_data_cache_page(addr); |
74 | } | 74 | } |
75 | EXPORT_SYMBOL(flush_dcache_page); | ||
75 | 76 | ||
76 | /* called by update_mmu_cache. */ | 77 | /* called by update_mmu_cache. */ |
77 | void __update_cache(struct vm_area_struct *vma, unsigned long address, | 78 | void __update_cache(struct vm_area_struct *vma, unsigned long address, |
@@ -277,3 +278,4 @@ void flush_icache_range(unsigned long start, unsigned long end) | |||
277 | start += L1_CACHE_BYTES; | 278 | start += L1_CACHE_BYTES; |
278 | } | 279 | } |
279 | } | 280 | } |
281 | EXPORT_SYMBOL(flush_icache_range); | ||