Skip to content

Commit 13391c6

Browse files
committed
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fix from Herbert Xu: "Fix a regression in the cesa driver" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: marvel/cesa - Fix tdma descriptor on 64-bit
2 parents f8ad818 + 4f6543f commit 13391c6

File tree

1 file changed

+2
-2
lines changed
  • drivers/crypto/marvell/cesa

1 file changed

+2
-2
lines changed

drivers/crypto/marvell/cesa/cesa.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,11 +300,11 @@ struct mv_cesa_tdma_desc {
300300
__le32 byte_cnt;
301301
union {
302302
__le32 src;
303-
dma_addr_t src_dma;
303+
u32 src_dma;
304304
};
305305
union {
306306
__le32 dst;
307-
dma_addr_t dst_dma;
307+
u32 dst_dma;
308308
};
309309
__le32 next_dma;
310310

0 commit comments

Comments
 (0)