diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2009-11-11 10:03:28 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-11 10:51:18 -0500 |
commit | b18485e7acfe1a634615d1c628ef644c0d58d472 (patch) | |
tree | 9b44e47b748f9377d88b960f8bdc6712b3c3046d /lib/swiotlb.c | |
parent | b4941a9a606f0131559cc040b64e8437ac7b32c5 (diff) |
swiotlb: Remove the swiotlb variable usage
POWERPC doesn't expect it to be used.
This fixes the linux-next build failure reported by
Stephen Rothwell:
lib/swiotlb.c: In function 'setup_io_tlb_npages':
lib/swiotlb.c:114: error: 'swiotlb' undeclared (first use in this function)
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: peterz@infradead.org
LKML-Reference: <20091112000258F.fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'lib/swiotlb.c')
-rw-r--r-- | lib/swiotlb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/swiotlb.c b/lib/swiotlb.c index e6755a0574fb..795472d8ae24 100644 --- a/lib/swiotlb.c +++ b/lib/swiotlb.c | |||
@@ -109,10 +109,9 @@ setup_io_tlb_npages(char *str) | |||
109 | } | 109 | } |
110 | if (*str == ',') | 110 | if (*str == ',') |
111 | ++str; | 111 | ++str; |
112 | if (!strcmp(str, "force")) { | 112 | if (!strcmp(str, "force")) |
113 | swiotlb_force = 1; | 113 | swiotlb_force = 1; |
114 | swiotlb = 1; | 114 | |
115 | } | ||
116 | return 1; | 115 | return 1; |
117 | } | 116 | } |
118 | __setup("swiotlb=", setup_io_tlb_npages); | 117 | __setup("swiotlb=", setup_io_tlb_npages); |