aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m68knommu
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@snapgear.com>2006-12-04 02:28:03 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-04 11:28:47 -0500
commitf75e3b1de6a72f6eb22f3ab120dd52b902357c03 (patch)
tree3e32aa936f2489e39d70ba7435d74e412b3506ea /include/asm-m68knommu
parent04a9f081b76f536bcf69db066153c2a4231d5783 (diff)
[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>
Diffstat (limited to 'include/asm-m68knommu')
-rw-r--r--include/asm-m68knommu/scatterlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-m68knommu/scatterlist.h b/include/asm-m68knommu/scatterlist.h
index 12309b181d29..2085d6ff8782 100644
--- a/include/asm-m68knommu/scatterlist.h
+++ b/include/asm-m68knommu/scatterlist.h
@@ -10,7 +10,7 @@ struct scatterlist {
10 unsigned int length; 10 unsigned int length;
11}; 11};
12 12
13#define sg_address(sg) (page_address((sg)->page) + (sg)->offset 13#define sg_address(sg) (page_address((sg)->page) + (sg)->offset)
14#define sg_dma_address(sg) ((sg)->dma_address) 14#define sg_dma_address(sg) ((sg)->dma_address)
15#define sg_dma_len(sg) ((sg)->length) 15#define sg_dma_len(sg) ((sg)->length)
16 16