Prev: [065/119] V4L/DVB (12356): gspca - sonixj: Webcam 0c45:6148 added
Next: [PATCH 5/6] docs: better explanation of procs_running
From: Randy Dunlap on 6 Dec 2009 23:00 From: Marin Mitov <mitov(a)issp.bas.bg> Subject: use DMA_BIT_MASK instead of inline constant Use DMA_BIT_MASK(24) instead of 0x00ffffff in DMA-mapping.txt Signed-off-by: Marin Mitov <mitov(a)issp.bas.bg> Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com> --- Documentation/DMA-mapping.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-2632-rc6.orig/Documentation/DMA-mapping.txt +++ lnx-2632-rc6/Documentation/DMA-mapping.txt @@ -214,7 +214,7 @@ most specific mask. Here is pseudo-code showing how this might be done: #define PLAYBACK_ADDRESS_BITS DMA_BIT_MASK(32) - #define RECORD_ADDRESS_BITS 0x00ffffff + #define RECORD_ADDRESS_BITS DMA_BIT_MASK(24) struct my_sound_card *card; struct pci_dev *pdev; -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |