The patch titled ipu_idmac: fix spinlock type has been removed from the -mm tree. Its filename was ipu_idmac-fix-spinlock-type.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: ipu_idmac: fix spinlock type From: Luotao Fu <l.fu@xxxxxxxxxxxxxx> Fix a probably accidently dropped reference operator while calling spin_unlock_restore to an ipu lock. Signed-off-by: Luotao Fu <l.fu@xxxxxxxxxxxxxx> Cc: Guennadi Liakhovetski <lg@xxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/dma/ipu/ipu_idmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/dma/ipu/ipu_idmac.c~ipu_idmac-fix-spinlock-type drivers/dma/ipu/ipu_idmac.c --- a/drivers/dma/ipu/ipu_idmac.c~ipu_idmac-fix-spinlock-type +++ a/drivers/dma/ipu/ipu_idmac.c @@ -729,7 +729,7 @@ static int ipu_init_channel_buffer(struc ichan->status = IPU_CHANNEL_READY; - spin_unlock_irqrestore(ipu->lock, flags); + spin_unlock_irqrestore(&ipu->lock, flags); return 0; } _ Patches currently in -mm which might be from l.fu@xxxxxxxxxxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html