Replace CHNL_E_MAXCHANNELS with ECHRNG Signed-off-by: Omar Ramirez Luna <omar.ramirez@xxxxxx> --- arch/arm/plat-omap/include/dspbridge/chnl.h | 2 +- drivers/dsp/bridge/pmgr/chnl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/plat-omap/include/dspbridge/chnl.h b/arch/arm/plat-omap/include/dspbridge/chnl.h index 7c06869..ff3ed51 100644 --- a/arch/arm/plat-omap/include/dspbridge/chnl.h +++ b/arch/arm/plat-omap/include/dspbridge/chnl.h @@ -64,7 +64,7 @@ extern dsp_status chnl_close(struct chnl_object *chnl_obj); * -EINVAL: max_channels is 0. * -ENOMEM: Insufficient memory for requested resources. * -EIO: Unable to plug channel ISR for configured IRQ. - * CHNL_E_MAXCHANNELS: This manager cannot handle this many channels. + * -ECHRNG: This manager cannot handle this many channels. * CHNL_E_INVALIDIRQ: Invalid IRQ number. Must be 0 <= birq <= 15. * -EINVAL: Invalid DSP word size. Must be > 0. * -EINVAL: Invalid base address for DSP communications. diff --git a/drivers/dsp/bridge/pmgr/chnl.c b/drivers/dsp/bridge/pmgr/chnl.c index 50d49eb..22087f2 100644 --- a/drivers/dsp/bridge/pmgr/chnl.c +++ b/drivers/dsp/bridge/pmgr/chnl.c @@ -73,7 +73,7 @@ dsp_status chnl_create(OUT struct chnl_mgr **phChnlMgr, else if (pMgrAttrs->max_channels == 0) status = -EINVAL; else - status = CHNL_E_MAXCHANNELS; + status = -ECHRNG; if (pMgrAttrs->word_size == 0) status = -EINVAL; -- 1.7.1 -- 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