commit | 790e2a290b499b0400254e6870ec27969065d122 | [log] [tgz] |
---|---|---|
author | Pekka Paalanen <pq@iki.fi> | Mon May 12 21:21:14 2008 +0200 |
committer | Thomas Gleixner <tglx@linutronix.de> | Sat May 24 11:27:47 2008 +0200 |
tree | 0c6b0e7d6b0db645e84c9dbb54ccab428f3d74a8 | |
parent | a50445d76c22a34ae149704ea5adaef171c8acb7 [diff] [blame] |
x86 mmiotrace: page level is unsigned Fixes some sparse warnings. Signed-off-by: Pekka Paalanen <pq@iki.fi> Signed-off-by: Ingo Molnar <mingo@elte.hu>
diff --git a/arch/x86/mm/mmio-mod.c b/arch/x86/mm/mmio-mod.c index ed0e0e9..e7397e1 100644 --- a/arch/x86/mm/mmio-mod.c +++ b/arch/x86/mm/mmio-mod.c
@@ -137,7 +137,7 @@ static void print_pte(unsigned long address) { - int level; + unsigned int level; pte_t *pte = lookup_address(address, &level); if (!pte) {