]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-m68knommu/scatterlist.h
sched: remove stale comment from sched_group_set_shares()
[linux-2.6-omap-h63xx.git] / include / asm-m68knommu / scatterlist.h
index 12309b181d29b5780dd84138b0712d6050387d85..4da79d3d3f34d03f07c7b34529f4e30502e2e3bf 100644 (file)
@@ -2,6 +2,7 @@
 #define _M68KNOMMU_SCATTERLIST_H
 
 #include <linux/mm.h>
+#include <asm/types.h>
 
 struct scatterlist {
        struct page     *page;
@@ -10,7 +11,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)