提交 317c68c0 编写于 作者: A Alan Cox 提交者: Greg Kroah-Hartman

Staging: et131x: Fix the add_10bit macro

Duh.. we need to preserve the wrap bit when adding.
Signed-off-by: NAlan Cox <alan@linux.intel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 b9d2dde0
......@@ -223,7 +223,7 @@ typedef union _TXDMA_PR_NUM_DES_t {
extern inline void add_10bit(u32 *v, int n)
{
*v = INDEX10(*v + n);
*v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册