提交 5ce04e3d 编写于 作者: P Pallipadi, Venkatesh 提交者: Ingo Molnar

fix warning in io_mapping_map_wc()

Signed-off-by: NVenkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 92b9af9e
...@@ -91,8 +91,11 @@ io_mapping_unmap_atomic(void *vaddr) ...@@ -91,8 +91,11 @@ io_mapping_unmap_atomic(void *vaddr)
static inline void * static inline void *
io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset) io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
{ {
resource_size_t phys_addr;
BUG_ON(offset >= mapping->size); BUG_ON(offset >= mapping->size);
resource_size_t phys_addr = mapping->base + offset; phys_addr = mapping->base + offset;
return ioremap_wc(phys_addr, PAGE_SIZE); return ioremap_wc(phys_addr, PAGE_SIZE);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册