]> git.sur5r.net Git - u-boot/commit
cfi_flash: Use u8 pointers instead of void pointers
authorMario Six <mario.six@gdsys.cc>
Fri, 26 Jan 2018 13:43:49 +0000 (14:43 +0100)
committerStefan Roese <sr@denx.de>
Mon, 29 Jan 2018 06:48:58 +0000 (07:48 +0100)
commit5312838dd5b3959907d6c4f0ec3e04954210fafc
tree6c026fbef677906913feba8eef94d995d8970fdc
parentd3525b6bb0c39de537f0d2e79bb9ab9ad8fd8bf5
cfi_flash: Use u8 pointers instead of void pointers

According to the C standard, pointer arithmetic for pointers of type
void is undefined behavior (the assumption that they're 8-bit wide is a
GCC-specific assumption). In the interest of keeping the code
standards-compliant, and also better communicate intent, switch all
void* variables where pointer arithmetic is used to u8* variables.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
drivers/mtd/cfi_flash.c