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, 13 Jan 2009
 05:54:17 -0800
Received: from ausesmta2-2.messageone.com ([64.20.241.45]) by mail.onstor.com
 with Microsoft SMTPSVC(6.0.3790.3959);	 Tue, 13 Jan 2009 05:54:16 -0800
Received: from ftp.linux-mips.org (ftp.linux-mips.org [213.58.128.207])	by
 ausesmta2-2.messageone.com (8.13.8/8.13.8) with ESMTP id n0DDsGes006072	for
 <andy.sharp@onstor.com>; Tue, 13 Jan 2009 07:54:17 -0600
Received: from localhost.localdomain ([127.0.0.1]:52435 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S21103557AbZAMNxW
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Tue, 13 Jan 2009 13:53:22 +0000
Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 13 Jan 2009 13:53:05
 +0000 (GMT)
Received: from fnoeppeil36.netpark.at ([217.175.205.164]:16794 "EHLO
	roarinelk.homelinux.net") by ftp.linux-mips.org with ESMTP	id
 S21103556AbZAMNxC (ORCPT <rfc822;linux-mips@linux-mips.org>);	Tue, 13 Jan
 2009 13:53:02 +0000
Received: (qmail 18397 invoked by uid 1000); 13 Jan 2009 14:49:58 +0100
From: Manuel Lauss <mano@roarinelk.homelinux.net>
To: Ralf Baechle <ralf@linux-mips.org>
CC: Linux-MIPS <linux-mips@linux-mips.org>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Tue, 13 Jan 2009 05:49:58 -0800
Subject: [PATCH] Alchemy: time.c compile fix (cpumask)
Thread-Topic: [PATCH] Alchemy: time.c compile fix (cpumask)
Thread-Index: Acl1hm1c4b/nAxk4Q6Oej8bm17PfIg==
Message-ID: <20090113134958.GA18314@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: 13 Jan 2009 13:54:16.0871 (UTC)
 FILETIME=[6CD49B70:01C97586]
user-agent: Mutt/1.5.16 (2007-06-09)
errors-to: linux-mips-bounce@linux-mips.org
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: ocHB/HUykJsK9sAOW7TUbg==
x-messageone-virus-version: vendor=fsecure
 engine=4.65.7400:2.4.4,1.2.40,4.0.164
 definitions=2009-01-13_06:2009-01-08,2009-01-13,2009-01-13 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-0901130056
x-messageone-spam-score: 0
x-messageone-spam-bar:
x-list: linux-mips
x-archive-position: 21716
x-ecartis-version: Ecartis v1.0.0
x-original-sender: mano@roarinelk.homelinux.net
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

The 'cpumask' member of struct clock_event_device is a pointer now.

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 3288014..6fd441d 100644
--- a/arch/mips/alchemy/common/time.c
+++ b/arch/mips/alchemy/common/time.c
@@ -89,7 +89,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.1


