Explorar o código

[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>
Greg Ungerer %!s(int64=18) %!d(string=hai) anos
pai
achega
f75e3b1de6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      include/asm-m68knommu/scatterlist.h

+ 1 - 1
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)