Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb221b4c authored by Shiraz Hashim's avatar Shiraz Hashim
Browse files

drivers: dma-removed: fix data type to hold base address



removed_region->base should be phy_addr_t type as it
directly holds physical memory address. Fix it.

Change-Id: I80d49d209cf0f319b7a468697387d23e6bcb1b98
Signed-off-by: default avatarShiraz Hashim <shashim@codeaurora.org>
parent 5f368015
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#include <linux/spinlock.h>

struct removed_region {
	dma_addr_t	base;
	phys_addr_t	base;
	int		nr_pages;
	unsigned long	*bitmap;
	struct mutex	lock;