aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m68knommu
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@snapgear.com>2006-12-04 17:28:03 +1000
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-04 08:28:47 -0800
commitf75e3b1de6a72f6eb22f3ab120dd52b902357c03 (patch)
tree3e32aa936f2489e39d70ba7435d74e412b3506ea /include/asm-m68knommu
parent[PATCH] m68knommu: fix dma-mapping.h (diff)
downloadlinux-dev-f75e3b1de6a72f6eb22f3ab120dd52b902357c03.tar.xz
linux-dev-f75e3b1de6a72f6eb22f3ab120dd52b902357c03.zip
[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 {
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)