Bug 82981

Summary: dma/iop-adma.c:1129: possible bad parameter in memset ?
Product: Drivers Reporter: David Binderman (dcb314)
Component: OtherAssignee: drivers_other
Status: NEW ---    
Severity: normal    
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: 3.17-rc1 Subsystem:
Regression: No Bisected commit-id:

Description David Binderman 2014-08-21 17:05:50 UTC
[linux-3.17-rc1/drivers/dma/iop-adma.c:1129]: (warning) The 2nd memset() argument '286331153' doesn't fit into an 'unsigned char'.

  memset(pq_sw[i], 0x11111111 * (1<<i), PAGE_SIZE);

Maybe

  memset(pq_sw[i], 0x11111111 & (1<<i), PAGE_SIZE);

was intended.