[-next] dmaengine: hidma: Fix cast to smaller integer type warning
Commit Message
Fix the following warning:
drivers/dma/qcom/hidma.c:748:8: warning: cast to smaller integer type 'enum hidma_cap' from 'const void *'
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
drivers/dma/qcom/hidma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -745,7 +745,7 @@ static bool hidma_test_capability(struct device *dev, enum hidma_cap test_cap)
{
enum hidma_cap cap;
- cap = (enum hidma_cap) device_get_match_data(dev);
+ cap = (unsigned long) device_get_match_data(dev);
return cap ? ((cap & test_cap) > 0) : 0;
}