>From 350cddf447f12ce5123cb5d14260c61593132a53 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar <x0hebbar@xxxxxx> Date: Wed, 24 Mar 2010 12:53:06 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_ENOTCONNECTED -> ENOTCONN) This patch replaces DSP_ENOTCONNECTED with -ENOTCONN. Signed-off-by: Shivananda Hebbar <x0hebbar@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/errbase.h | 3 --- drivers/dsp/bridge/rmgr/node.c | 2 +- 2 files changed, 1 insertions(+), 4 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/errbase.h b/arch/arm/plat-omap/include/dspbridge/errbase.h index 7e2f0b6..e564284 100644 --- a/arch/arm/plat-omap/include/dspbridge/errbase.h +++ b/arch/arm/plat-omap/include/dspbridge/errbase.h @@ -188,9 +188,6 @@ /* Invalid stream mode */ #define DSP_ESTRMMODE (DSP_EBASE + 0x3a) -/* Nodes not connected */ -#define DSP_ENOTCONNECTED (DSP_EBASE + 0x3b) - /* Not shared memory */ #define DSP_ENOTSHAREDMEM (DSP_EBASE + 0x3c) diff --git a/drivers/dsp/bridge/rmgr/node.c b/drivers/dsp/bridge/rmgr/node.c index b26052c..d4949dc 100644 --- a/drivers/dsp/bridge/rmgr/node.c +++ b/drivers/dsp/bridge/rmgr/node.c @@ -1206,7 +1206,7 @@ dsp_status node_create(struct node_object *hnode) hnode->num_inputs - 1) || (hnode->num_outputs && hnode->max_output_index > hnode->num_outputs - 1)) - status = DSP_ENOTCONNECTED; + status = -ENOTCONN; if (DSP_SUCCEEDED(status)) { /* If node's create function is not loaded, load it */ -- 1.6.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html