Skip to content

Commit

Permalink
[PATCH] m68knommu: fix missing bracket in scatterlist.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Ungerer authored and Linus Torvalds committed Dec 4, 2006
1 parent 04a9f08 commit f75e3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-m68knommu/scatterlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit f75e3b1

Please sign in to comment.