Received: from mail.onstor.com ([66.201.51.107]) by onstor-exch02.onstor.net with Microsoft SMTPSVC(6.0.3790.1830);
	 Sat, 5 Jan 2008 00:47:49 -0800
Received: from mxb2eqab.ultradns.net ([204.74.103.22]) by mail.onstor.com with Microsoft SMTPSVC(6.0.3790.1830);
	 Sat, 5 Jan 2008 00:47:49 -0800
Received: from ftp.linux-mips.org ([194.74.144.162])
	by mxb2eqab.ultradns.net with esmtp (Exim 4.43)
	id 1JAvEx-0001iK-Qa
	for andy.sharp@onstor.com; Fri, 04 Jan 2008 22:42:12 +0000
Received: from localhost.localdomain ([127.0.0.1]:45282 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP
	id S20025771AbYADWjB (ORCPT <rfc822;andy.sharp@onstor.com>);
	Fri, 4 Jan 2008 22:39:01 +0000
Received: with ECARTIS (v1.0.0; list linux-mips); Fri, 04 Jan 2008 22:38:41 +0000 (GMT)
Received: from elvis.franken.de ([193.175.24.41]:45202 "EHLO elvis.franken.de")
	by ftp.linux-mips.org with ESMTP id S20025877AbYADWid (ORCPT
	<rfc822;linux-mips@linux-mips.org>); Fri, 4 Jan 2008 22:38:33 +0000
Received: from uucp (helo=solo.franken.de)
	by elvis.franken.de with local-bsmtp (Exim 3.36 #1)
	id 1JAvBQ-0007Fb-00; Fri, 04 Jan 2008 23:38:32 +0100
Received: by solo.franken.de (Postfix, from userid 1000)
	id 15FF4C2EF3; Fri,  4 Jan 2008 23:38:31 +0100 (CET)
From:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Subject: [PATCH] Assume newer R4000/R4400 don't have the mfc0 count bug
To:	linux-mips@linux-mips.org
cc:	ralf@linux-mips.org
Message-Id: <20080104223831.15FF4C2EF3@solo.franken.de>
Date:	Fri,  4 Jan 2008 23:38:31 +0100 (CET)
X-archive-position: 17920
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: tsbogend@alpha.franken.de
Precedence: bulk
X-list:	linux-mips
Return-Path: linux-mips-bounce@linux-mips.org
X-OriginalArrivalTime: 05 Jan 2008 08:47:49.0771 (UTC) FILETIME=[A6C54DB0:01C84F77]

Assume newer R4000/R4400 don't have the mfc0 count bug

Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
---

diff --git a/arch/mips/kernel/time.c b/arch/mips/kernel/time.c
index 1ecfbb7..2995be1 100644
--- a/arch/mips/kernel/time.c
+++ b/arch/mips/kernel/time.c
@@ -147,9 +147,9 @@ static __init int cpu_has_mfc0_count_bug(void)
 			return 1;
 
 		/*
-		 * I don't have erratas for newer R4400 so be paranoid.
+		 * we assume newer revisions are ok
 		 */
-		return 1;
+		return 0;
 	}
 
 	return 0;

