ipu: make disable/unitialized "error" into "info" since it doesn't mean anything went wrong

This commit is contained in:
Matt Sealey
2010-10-28 02:43:38 -05:00
parent e6abfd65bb
commit 5b0051e382

View File

@@ -748,7 +748,7 @@ void ipu_uninit_channel(ipu_channel_t channel)
uint32_t ipu_conf;
if ((g_channel_init_mask & (1L << IPU_CHAN_ID(channel))) == 0) {
dev_err(g_ipu_dev, "Channel already uninitialized %d\n",
dev_info(g_ipu_dev, "Channel already uninitialized %d\n",
IPU_CHAN_ID(channel));
return;
}
@@ -1839,7 +1839,7 @@ int32_t ipu_disable_channel(ipu_channel_t channel, bool wait_for_stop)
uint32_t thrd_dma = NO_DMA;
if ((g_channel_enable_mask & (1L << IPU_CHAN_ID(channel))) == 0) {
dev_err(g_ipu_dev, "Channel already disabled %d\n",
dev_info(g_ipu_dev, "Channel already disabled %d\n",
IPU_CHAN_ID(channel));
return 0;
}