Received: from mail.onstor.com (66.201.51.107) by exch1.onstor.net
 (10.0.0.225) with Microsoft SMTP Server id 8.1.311.2; Tue, 6 Jan 2009
 01:36:22 -0800
Received: from dalesmta2-1.messageone.com ([129.41.169.249]) by
 mail.onstor.com with Microsoft SMTPSVC(6.0.3790.3959);	 Tue, 6 Jan 2009
 01:36:05 -0800
Received: from ftp.linux-mips.org (ftp.linux-mips.org [213.58.128.207])	by
 dalesmta2-1.messageone.com (8.13.8/8.13.8) with ESMTP id n069a4Qw010532	for
 <andy.sharp@onstor.com>; Tue, 6 Jan 2009 03:36:04 -0600
Received: from localhost.localdomain ([127.0.0.1]:27539 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S24055266AbZAFJfQ
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Tue, 6 Jan 2009 09:35:16 +0000
Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 06 Jan 2009 09:34:59
 +0000 (GMT)
Received: from fnoeppeil48.netpark.at ([217.175.205.176]:31958 "EHLO
	roarinelk.homelinux.net") by ftp.linux-mips.org with ESMTP	id
 S24053316AbZAFJey (ORCPT <rfc822;linux-mips@linux-mips.org>);	Tue, 6 Jan 2009
 09:34:54 +0000
Received: (qmail 8452 invoked from network); 6 Jan 2009 10:34:53 +0100
Received: from scarran.roarinelk.net (HELO localhost.localdomain)
 (192.168.0.242)  by 192.168.0.1 with SMTP; 6 Jan 2009 10:34:53 +0100
From: Manuel Lauss <mano@roarinelk.homelinux.net>
To: Linux-MIPS <linux-mips@linux-mips.org>
CC: Manuel Lauss <mano@roarinelk.homelinux.net>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Tue, 6 Jan 2009 01:34:52 -0800
Subject: [PATCH] Alchemy: time.c build fix
Thread-Topic: [PATCH] Alchemy: time.c build fix
Thread-Index: Aclv4jywnEwSTk6wSQS7DKHFKfGu3g==
Message-ID: <1231234492-25733-1-git-send-email-mano@roarinelk.homelinux.net>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Internal
X-MS-Exchange-Organization-AuthMechanism: 0b
X-MS-Exchange-Organization-AuthSource: exch1.onstor.net
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-originalarrivaltime: 06 Jan 2009 09:36:05.0422 (UTC)
 FILETIME=[3250D4E0:01C96FE2]
errors-to: linux-mips-bounce@linux-mips.org
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: uZZfYkdXQCEI3+Ohf6M/7Q==
x-messageone-virus-version: vendor=fsecure
 engine=4.65.7400:2.4.4,1.2.40,4.0.164
 definitions=2009-01-06_04:2009-01-06,2009-01-06,2009-01-06 signatures=0
x-messageone-virus-scanned: Clean
x-messageone-envelope-sender: linux-mips-bounce@linux-mips.org
x-messageone-spam-details: rule=m773emszm_notspam policy=m773emszm score=0
 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam
 adjust=0 reason=mlx engine=3.1.0-0810130000 definitions=main-0901060012
x-messageone-spam-score: 0
x-messageone-spam-bar:
x-list: linux-mips
x-archive-position: 21686
x-ecartis-version: Ecartis v1.0.0
x-original-sender: mano@roarinelk.homelinux.net
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

in Linus' current -git the cpumask member is now a pointer.

Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net>
---
 arch/mips/alchemy/common/time.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/alchemy/common/time.c b/arch/mips/alchemy/common/tim=
e.c
index 307514f..183180a 100644
--- a/arch/mips/alchemy/common/time.c
+++ b/arch/mips/alchemy/common/time.c
@@ -69,7 +69,7 @@ static struct clock_event_device au1x_rtcmatch2_clockdev =
=3D {
 	.irq		=3D AU1000_RTC_MATCH2_INT,
 	.set_next_event	=3D au1x_rtcmatch2_set_next_event,
 	.set_mode	=3D au1x_rtcmatch2_set_mode,
-	.cpumask	=3D CPU_MASK_ALL,
+	.cpumask	=3D CPU_MASK_ALL_PTR,
 };
=20
 static struct irqaction au1x_rtcmatch2_irqaction =3D {
--=20
1.6.0.6


