diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-11 01:58:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-09-13 14:42:58 -0400 |
commit | f148b41e8b2e114d0aba023adf326b03368f3246 (patch) | |
tree | 9da09d3164c086fee4ea8321f74a8b5487686c32 | |
parent | e8988e0550b040265b8cdab82c553b5d6be627fb (diff) |
x86: Clean up various simple wrapper functions
Remove unneeded variables and assignments.
While we are here, let's fix the following as well:
- Remove unnecessary parentheses
- Remove unnecessary unsigned-suffix 'U' from constant values
- Reword the comment in set_apic_id() (suggested by Thomas Gleixner)
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Alex Thorlton <athorlton@sgi.com>
Cc: Andrew Banman <abanman@sgi.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Daniel J Blueman <daniel@numascale.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Dimitri Sivanich <sivanich@sgi.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Mike Travis <travis@sgi.com>
Cc: Nathan Zimmer <nzimmer@sgi.com>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steffen Persvold <sp@numascale.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Toshi Kani <toshi.kani@hpe.com>
Cc: Wei Jiangang <weijg.fnst@cn.fujitsu.com>
Link: http://lkml.kernel.org/r/1473573502-27954-1-git-send-email-yamada.masahiro@socionext.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/apic/apic_flat_64.c | 16 | ||||
-rw-r--r-- | arch/x86/kernel/apic/apic_numachip.c | 5 | ||||
-rw-r--r-- | arch/x86/kernel/apic/x2apic_uv_x.c | 7 | ||||
-rw-r--r-- | arch/x86/mm/pat_rbtree.c | 4 | ||||
-rw-r--r-- | arch/x86/platform/uv/bios_uv.c | 7 | ||||
-rw-r--r-- | arch/x86/platform/uv/tlb_uv.c | 6 |
6 files changed, 10 insertions, 35 deletions
diff --git a/arch/x86/kernel/apic/apic_flat_64.c b/arch/x86/kernel/apic/apic_flat_64.c index 5b2ae106bd4a..70796f51b2ff 100644 --- a/arch/x86/kernel/apic/apic_flat_64.c +++ b/arch/x86/kernel/apic/apic_flat_64.c | |||
@@ -116,27 +116,17 @@ static void flat_send_IPI_all(int vector) | |||
116 | 116 | ||
117 | static unsigned int flat_get_apic_id(unsigned long x) | 117 | static unsigned int flat_get_apic_id(unsigned long x) |
118 | { | 118 | { |
119 | unsigned int id; | 119 | return (x >> 24) & 0xFF; |
120 | |||
121 | id = (((x)>>24) & 0xFFu); | ||
122 | |||
123 | return id; | ||
124 | } | 120 | } |
125 | 121 | ||
126 | static unsigned long set_apic_id(unsigned int id) | 122 | static unsigned long set_apic_id(unsigned int id) |
127 | { | 123 | { |
128 | unsigned long x; | 124 | return (id & 0xFF) << 24; |
129 | |||
130 | x = ((id & 0xFFu)<<24); | ||
131 | return x; | ||
132 | } | 125 | } |
133 | 126 | ||
134 | static unsigned int read_xapic_id(void) | 127 | static unsigned int read_xapic_id(void) |
135 | { | 128 | { |
136 | unsigned int id; | 129 | return flat_get_apic_id(apic_read(APIC_ID)); |
137 | |||
138 | id = flat_get_apic_id(apic_read(APIC_ID)); | ||
139 | return id; | ||
140 | } | 130 | } |
141 | 131 | ||
142 | static int flat_apic_id_registered(void) | 132 | static int flat_apic_id_registered(void) |
diff --git a/arch/x86/kernel/apic/apic_numachip.c b/arch/x86/kernel/apic/apic_numachip.c index 714d4fda0d52..e08fe2c8dd8c 100644 --- a/arch/x86/kernel/apic/apic_numachip.c +++ b/arch/x86/kernel/apic/apic_numachip.c | |||
@@ -40,10 +40,7 @@ static unsigned int numachip1_get_apic_id(unsigned long x) | |||
40 | 40 | ||
41 | static unsigned long numachip1_set_apic_id(unsigned int id) | 41 | static unsigned long numachip1_set_apic_id(unsigned int id) |
42 | { | 42 | { |
43 | unsigned long x; | 43 | return (id & 0xff) << 24; |
44 | |||
45 | x = ((id & 0xffU) << 24); | ||
46 | return x; | ||
47 | } | 44 | } |
48 | 45 | ||
49 | static unsigned int numachip2_get_apic_id(unsigned long x) | 46 | static unsigned int numachip2_get_apic_id(unsigned long x) |
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index cb0673c1e940..0f8cd928f368 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c | |||
@@ -533,11 +533,8 @@ static unsigned int x2apic_get_apic_id(unsigned long x) | |||
533 | 533 | ||
534 | static unsigned long set_apic_id(unsigned int id) | 534 | static unsigned long set_apic_id(unsigned int id) |
535 | { | 535 | { |
536 | unsigned long x; | 536 | /* CHECKME: Do we need to mask out the xapic extra bits? */ |
537 | 537 | return id; | |
538 | /* maskout x2apic_extra_bits ? */ | ||
539 | x = id; | ||
540 | return x; | ||
541 | } | 538 | } |
542 | 539 | ||
543 | static unsigned int uv_read_apic_id(void) | 540 | static unsigned int uv_read_apic_id(void) |
diff --git a/arch/x86/mm/pat_rbtree.c b/arch/x86/mm/pat_rbtree.c index de391b7bc19a..159b52ccd600 100644 --- a/arch/x86/mm/pat_rbtree.c +++ b/arch/x86/mm/pat_rbtree.c | |||
@@ -254,9 +254,7 @@ struct memtype *rbt_memtype_erase(u64 start, u64 end) | |||
254 | 254 | ||
255 | struct memtype *rbt_memtype_lookup(u64 addr) | 255 | struct memtype *rbt_memtype_lookup(u64 addr) |
256 | { | 256 | { |
257 | struct memtype *data; | 257 | return memtype_rb_lowest_match(&memtype_rbroot, addr, addr + PAGE_SIZE); |
258 | data = memtype_rb_lowest_match(&memtype_rbroot, addr, addr + PAGE_SIZE); | ||
259 | return data; | ||
260 | } | 258 | } |
261 | 259 | ||
262 | #if defined(CONFIG_DEBUG_FS) | 260 | #if defined(CONFIG_DEBUG_FS) |
diff --git a/arch/x86/platform/uv/bios_uv.c b/arch/x86/platform/uv/bios_uv.c index 23f2f3e41c7f..b4d5e95fe4df 100644 --- a/arch/x86/platform/uv/bios_uv.c +++ b/arch/x86/platform/uv/bios_uv.c | |||
@@ -149,11 +149,8 @@ EXPORT_SYMBOL_GPL(uv_bios_change_memprotect); | |||
149 | s64 | 149 | s64 |
150 | uv_bios_reserved_page_pa(u64 buf, u64 *cookie, u64 *addr, u64 *len) | 150 | uv_bios_reserved_page_pa(u64 buf, u64 *cookie, u64 *addr, u64 *len) |
151 | { | 151 | { |
152 | s64 ret; | 152 | return uv_bios_call_irqsave(UV_BIOS_GET_PARTITION_ADDR, (u64)cookie, |
153 | 153 | (u64)addr, buf, (u64)len, 0); | |
154 | ret = uv_bios_call_irqsave(UV_BIOS_GET_PARTITION_ADDR, (u64)cookie, | ||
155 | (u64)addr, buf, (u64)len, 0); | ||
156 | return ret; | ||
157 | } | 154 | } |
158 | EXPORT_SYMBOL_GPL(uv_bios_reserved_page_pa); | 155 | EXPORT_SYMBOL_GPL(uv_bios_reserved_page_pa); |
159 | 156 | ||
diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c index fdb4d42b4ce5..276e1b7bba3c 100644 --- a/arch/x86/platform/uv/tlb_uv.c +++ b/arch/x86/platform/uv/tlb_uv.c | |||
@@ -580,11 +580,7 @@ static int uv1_wait_completion(struct bau_desc *bau_desc, | |||
580 | */ | 580 | */ |
581 | static unsigned long uv2_3_read_status(unsigned long offset, int rshft, int desc) | 581 | static unsigned long uv2_3_read_status(unsigned long offset, int rshft, int desc) |
582 | { | 582 | { |
583 | unsigned long descriptor_status; | 583 | return ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1; |
584 | |||
585 | descriptor_status = | ||
586 | ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1; | ||
587 | return descriptor_status; | ||
588 | } | 584 | } |
589 | 585 | ||
590 | /* | 586 | /* |