[PATCH] m68knommu: fix missing bracket in scatterlist.h
This patch adds missing bracket. Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
04a9f081b7
commit
f75e3b1de6
|
@ -10,7 +10,7 @@ struct scatterlist {
|
|||
unsigned int length;
|
||||
};
|
||||
|
||||
#define sg_address(sg) (page_address((sg)->page) + (sg)->offset
|
||||
#define sg_address(sg) (page_address((sg)->page) + (sg)->offset)
|
||||
#define sg_dma_address(sg) ((sg)->dma_address)
|
||||
#define sg_dma_len(sg) ((sg)->length)
|
||||
|
||||
|
|
Loading…
Reference in New Issue