mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
i2c: i2c-pnx: Made buf type unsigned to prevent sign extension
Made buf type unsigned to prevent sign extension Signed-off-by: Kevin Wells <kevin.wells@nxp.com> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
This commit is contained in:
parent
b2f125bcf5
commit
4ced24c897
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ struct i2c_pnx_mif {
|
|||
int mode; /* Interface mode */
|
||||
struct completion complete; /* I/O completion */
|
||||
struct timer_list timer; /* Timeout */
|
||||
char * buf; /* Data buffer */
|
||||
u8 * buf; /* Data buffer */
|
||||
int len; /* Length of data buffer */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue