diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2008-01-29 09:13:58 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-01-30 20:11:09 -0500 |
commit | 1f62a1626e53e7b851e3e059cbd2fdc99cb85c05 (patch) | |
tree | c97f001a59ed96a6837cc423ce3e12d33cbc3434 /include/asm-powerpc | |
parent | bd45ac0c5daae35e7c71138172e63df5cf644cf6 (diff) |
[POWERPC] Add set_dma_ops() to match get_dma_ops()
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/dma-mapping.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-powerpc/dma-mapping.h b/include/asm-powerpc/dma-mapping.h index 5eea6dbc0aa2..bbefb69bfb67 100644 --- a/include/asm-powerpc/dma-mapping.h +++ b/include/asm-powerpc/dma-mapping.h | |||
@@ -76,6 +76,11 @@ static inline struct dma_mapping_ops *get_dma_ops(struct device *dev) | |||
76 | return dev->archdata.dma_ops; | 76 | return dev->archdata.dma_ops; |
77 | } | 77 | } |
78 | 78 | ||
79 | static inline void set_dma_ops(struct device *dev, struct dma_mapping_ops *ops) | ||
80 | { | ||
81 | dev->archdata.dma_ops = ops; | ||
82 | } | ||
83 | |||
79 | static inline int dma_supported(struct device *dev, u64 mask) | 84 | static inline int dma_supported(struct device *dev, u64 mask) |
80 | { | 85 | { |
81 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); | 86 | struct dma_mapping_ops *dma_ops = get_dma_ops(dev); |