From patchwork Thu Sep 17 15:26:40 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 48288 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8HFRjbY017414 for ; Thu, 17 Sep 2009 15:27:45 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756726AbZIQP1A (ORCPT ); Thu, 17 Sep 2009 11:27:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756136AbZIQP06 (ORCPT ); Thu, 17 Sep 2009 11:26:58 -0400 Received: from smtp.nokia.com ([192.100.105.134]:38159 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754495AbZIQP05 (ORCPT ); Thu, 17 Sep 2009 11:26:57 -0400 Received: from vaebh106.NOE.Nokia.com (vaebh106.europe.nokia.com [10.160.244.32]) by mgw-mx09.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n8HFPfvj032401; Thu, 17 Sep 2009 10:26:14 -0500 Received: from vaebh104.NOE.Nokia.com ([10.160.244.30]) by vaebh106.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 17 Sep 2009 18:26:43 +0300 Received: from mgw-da01.ext.nokia.com ([147.243.128.24]) by vaebh104.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 17 Sep 2009 18:26:42 +0300 Received: from dilbert.research.nokia.com (esdhcp034223.research.nokia.com [172.21.34.223]) by mgw-da01.ext.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n8HFQYma023657 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Thu, 17 Sep 2009 18:26:35 +0300 Received: from andy by dilbert.research.nokia.com with local (Exim 4.69) (envelope-from ) id 1MoIsa-0008Ib-Ta; Thu, 17 Sep 2009 18:26:40 +0300 From: Andy Shevchenko To: linux-omap@vger.kernel.org Cc: x0095840@ti.com, omar.ramirez@ti.com, hiroshi.doyu@nokia.com, Andy Shevchenko Subject: [PATCH] dspbridge: clean up errbase.h Date: Thu, 17 Sep 2009 18:26:40 +0300 Message-Id: <1253201200-31883-1-git-send-email-andy.shevchenko@gmail.com> X-Mailer: git-send-email 1.5.6.5 X-OriginalArrivalTime: 17 Sep 2009 15:26:42.0579 (UTC) FILETIME=[425CBE30:01CA37AB] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: Andy Shevchenko It seems BRD_* error codes from this certain file is redundant. Signed-off-by: Andy Shevchenko --- arch/arm/plat-omap/include/dspbridge/errbase.h | 15 --------------- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/errbase.h b/arch/arm/plat-omap/include/dspbridge/errbase.h index f04c005..47b9a0b 100644 --- a/arch/arm/plat-omap/include/dspbridge/errbase.h +++ b/arch/arm/plat-omap/include/dspbridge/errbase.h @@ -324,21 +324,6 @@ /* Insufficient buffer size */ #define CFG_E_INSUFFICIENTBUFSIZE (CFG_EBASE + 0x05) -/* FAILURE Codes : BRD */ -#define BRD_EBASE (DSP_COMP_EBASE + 0x300) - -/* Board client does not have sufficient access rights for this operation. */ -#define BRD_E_ACCESSDENIED (BRD_EBASE + 0x00) - -/* Unable to find trace buffer symbols in the DSP executable COFF file. */ -#define BRD_E_NOTRACEBUFFER (BRD_EBASE + 0x01) - -/* Attempted to auto-start board, but no default DSP executable configured. */ -#define BRD_E_NOEXEC (BRD_EBASE + 0x02) - -/* The operation failed because it was started from a wrong state */ -#define BRD_E_WRONGSTATE (BRD_EBASE + 0x03) - /* FAILURE Codes : COD */ #define COD_EBASE (DSP_COMP_EBASE + 0x400)