This reverts commit
f4f0b7403a06d2642ca40e6a0b18ee7336f276a8.
Reverting this commit as it is causing usb failures
Need to find the exact root cause yet and hence this
workaround for the usb to work
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
static inline void *
map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
{
- return (void *)((unsigned long)paddr);
+ return (void *)paddr;
}
/*
static inline phys_addr_t virt_to_phys(void * vaddr)
{
- return (phys_addr_t)((unsigned long)vaddr);
+ return (phys_addr_t)(vaddr);
}
/*
#define BITS_PER_LONG 32
#endif /* CONFIG_ARM64 */
-#ifdef CONFIG_PHYS_64BIT
-typedef unsigned long long dma_addr_t;
-typedef unsigned long long phys_addr_t;
-typedef unsigned long long phys_size_t;
-#else
-/* DMA addresses are 32-bits wide */
+/* Dma addresses are 32-bits wide. */
+
typedef u32 dma_addr_t;
+
typedef unsigned long phys_addr_t;
typedef unsigned long phys_size_t;
-#endif
#endif /* __KERNEL__ */