From owner-freebsd-mips@FreeBSD.ORG Sun Sep 12 17:15:37 2010 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A67E9106564A for ; Sun, 12 Sep 2010 17:15:37 +0000 (UTC) (envelope-from c.jayachandran@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3B2748FC1D for ; Sun, 12 Sep 2010 17:15:36 +0000 (UTC) Received: by wyb33 with SMTP id 33so6115824wyb.13 for ; Sun, 12 Sep 2010 10:15:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=wHGRQCN7rpsxVz39Q+Tlb2c7LSwoZpVHMe2OQuPfkKk=; b=vP4vmNhyq9+WaWPYoaY57Vw1JlYe9W0rzWTpa3FOMKk1gwfXyhM0IpCeqCHmJrlbj2 cMKBF8D1Zy5wSZj8FzSG3EXXYv09fQSn+4tPMseIcdm69XuBHf7PkyvrERnmWAlo+/mZ V8UedG6GhFS2/RYh5RAxcQJlrNbxfVTAezMtY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=tXn45TmoWnmmRWsoOS9T2LXjHd0IVLTI+GrJgL7Y1refhWhc3UNlSYFzBPLFIvERtS C/ZqmpVcsFxcLB5ujAZX3r4ggCq57UI4KjIy58rGXzbkC4kk9T+qxGNokoKNCKc3KLbF BcXUNyMFk3sEzpDoPHDHml3MxTxxY7LVsExos= MIME-Version: 1.0 Received: by 10.216.178.200 with SMTP id f50mr3354795wem.62.1284311736176; Sun, 12 Sep 2010 10:15:36 -0700 (PDT) Received: by 10.216.171.12 with HTTP; Sun, 12 Sep 2010 10:15:36 -0700 (PDT) In-Reply-To: <20100912.102645.1055929314662048689.imp@bsdimp.com> References: <20100912.102645.1055929314662048689.imp@bsdimp.com> Date: Sun, 12 Sep 2010 22:45:36 +0530 Message-ID: From: "Jayachandran C." To: "M. Warner Losh" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-mips@freebsd.org Subject: Re: patch - remove psracccess.S X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Sep 2010 17:15:37 -0000 On Sun, Sep 12, 2010 at 9:56 PM, M. Warner Losh wrote: > In message: > =A0 =A0 =A0 =A0 =A0 =A0"Jayachandran C." write= s: > : Index: sys/mips/include/md_var.h > : =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > : --- sys/mips/include/md_var.h (revision 212475) > : +++ sys/mips/include/md_var.h (working copy) > : @@ -75,9 +75,5 @@ > : =A0void platform_identify(void); > : > : =A0extern int busdma_swi_pending; > : -void busdma_swi(void); > : - > : -u_int32_t set_intr_mask(u_int32_t); > : -u_int32_t get_intr_mask(void); > : - > : +void busdma_swi(void); > : =A0#endif /* !_MACHINE_MD_VAR_H_ */ > > This appears to be unrelated... cpufunc.h had the other interrupt related definitions, so I thought it would be better to move it there than to add the inline functions here. JC