Commit b8291dde authored by Ezequiel Garcia's avatar Ezequiel Garcia Committed by Vinod Koul

dma: mv_xor: Replace printk with dev_info

This commit replaces a printk(KERN_INFO ...) call with a dev_info() call,
which is prefered for drivers.
Signed-off-by: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent a64efe15
...@@ -537,8 +537,9 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan) ...@@ -537,8 +537,9 @@ static int mv_xor_alloc_chan_resources(struct dma_chan *chan)
while (idx < num_descs_in_pool) { while (idx < num_descs_in_pool) {
slot = kzalloc(sizeof(*slot), GFP_KERNEL); slot = kzalloc(sizeof(*slot), GFP_KERNEL);
if (!slot) { if (!slot) {
printk(KERN_INFO "MV XOR Channel only initialized" dev_info(mv_chan_to_devp(mv_chan),
" %d descriptor slots", idx); "channel only initialized %d descriptor slots",
idx);
break; break;
} }
virt_desc = mv_chan->dma_desc_pool_virt; virt_desc = mv_chan->dma_desc_pool_virt;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment