Received: from mail.onstor.com ([66.201.51.107]) by onstor-exch02.onstor.net with Microsoft SMTPSVC(6.0.3790.1830);
	 Mon, 26 Mar 2007 14:13:49 -0700
Received: from ftp.linux-mips.org ([194.74.144.162]) by mail.onstor.com with Microsoft SMTPSVC(6.0.3790.1830);
	 Mon, 26 Mar 2007 14:13:49 -0700
Received: from localhost.localdomain ([127.0.0.1]:45529 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP
	id S20022763AbXCZVNc (ORCPT <rfc822;dan.stein@onstor.com> + 1 other);
	Mon, 26 Mar 2007 22:13:32 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 26 Mar 2007 22:13:12 +0100 (BST)
Received: from smtp-ext.int-evry.fr ([157.159.11.17]:61587 "EHLO
	smtp-ext.int-evry.fr") by ftp.linux-mips.org with ESMTP
	id S20022759AbXCZVNK (ORCPT <rfc822;linux-mips@linux-mips.org>);
	Mon, 26 Mar 2007 22:13:10 +0100
Received: from mini.int.alphacore.net (florian.maisel.int-evry.fr [157.159.41.36])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp-ext.int-evry.fr (Postfix) with ESMTP id B141F8D1695;
	Mon, 26 Mar 2007 23:11:53 +0200 (CEST)
From:	Florian Fainelli <florian.fainelli@int-evry.fr>
To:	Thiemo Seufer <ths@networkno.de>
Subject: Re: [PATCH] Fix a warning in lib-64/dump_tlb.c
Date:	Mon, 26 Mar 2007 23:09:56 +0200
User-Agent: KMail/1.9.6
Cc:	"Maciej W. Rozycki" <macro@linux-mips.org>,
	linux-mips@linux-mips.org
References: <45FABA5A.5000007@int-evry.fr> <Pine.LNX.4.64N.0703211540520.2628@blysk.ds.pg.gda.pl> <20070321165521.GI2311@networkno.de>
In-Reply-To: <20070321165521.GI2311@networkno.de>
MIME-Version: 1.0
Content-Type: text/plain;
  charset="ansi_x3.4-1968"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: <200703262309.57577.florian.fainelli@int-evry.fr>
X-archive-position: 14704
X-ecartis-version: Ecartis v1.0.0
Sender:	linux-mips-bounce@linux-mips.org
Errors-to: linux-mips-bounce@linux-mips.org
X-original-sender: florian.fainelli@int-evry.fr
Precedence: bulk
X-list:	linux-mips
Return-Path: linux-mips-bounce@linux-mips.org
X-OriginalArrivalTime: 26 Mar 2007 21:13:49.0227 (UTC) FILETIME=[A5C187B0:01C76FEB]

Hello,

Here is the patch taking into account your remarks. Thanks !

Signed-off-by: Florian Fainelli <florian.fainelli@int-evry.fr>
------
diff --git a/arch/mips/lib-64/dump_tlb.c b/arch/mips/lib-64/dump_tlb.c
index 8232900..a320944 100644
--- a/arch/mips/lib-64/dump_tlb.c
+++ b/arch/mips/lib-64/dump_tlb.c
@@ -30,6 +30,7 @@ static inline const char *msk2str(unsigned int mask)
        case PM_64M:    return "64Mb";
        case PM_256M:   return "256Mb";
 #endif
+       default:        BUG();
        }
 }

