diff options
author | Huaisheng Ye <yehs1@lenovo.com> | 2018-05-25 08:00:00 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-05-25 12:23:06 +0300 |
commit | 884571f0de7b02bb784be3a5c870eabce62cdaeb (patch) | |
tree | 86fd8b6d7ef6cf0d1e22188e9c5d4ad3edd206a7 /arch/x86/include/asm/dma-mapping.h | |
parent | 78c47830a5cbb5d22dc91819a95af3d5c4bec084 (diff) | |
download | linux-884571f0de7b02bb784be3a5c870eabce62cdaeb.tar.xz |
dma-mapping: remove unused gfp_t parameter to arch_dma_alloc_attrs
Signed-off-by: Huaisheng Ye <yehs1@lenovo.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/x86/include/asm/dma-mapping.h')
-rw-r--r-- | arch/x86/include/asm/dma-mapping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/dma-mapping.h b/arch/x86/include/asm/dma-mapping.h index 89ce4bfd241f..ef597478f0ac 100644 --- a/arch/x86/include/asm/dma-mapping.h +++ b/arch/x86/include/asm/dma-mapping.h @@ -33,7 +33,7 @@ static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus) int arch_dma_supported(struct device *dev, u64 mask); #define arch_dma_supported arch_dma_supported -bool arch_dma_alloc_attrs(struct device **dev, gfp_t *gfp); +bool arch_dma_alloc_attrs(struct device **dev); #define arch_dma_alloc_attrs arch_dma_alloc_attrs #endif |