[PATCH] DAC960: use memmove for overlapping areas
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
2ecd05ae68
commit
39913b31d0
|
@ -4379,8 +4379,8 @@ static inline void DAC960_P_To_PD_TranslateEnquiry(void *Enquiry)
|
||||||
static inline void DAC960_P_To_PD_TranslateDeviceState(void *DeviceState)
|
static inline void DAC960_P_To_PD_TranslateDeviceState(void *DeviceState)
|
||||||
{
|
{
|
||||||
memcpy(DeviceState + 2, DeviceState + 3, 1);
|
memcpy(DeviceState + 2, DeviceState + 3, 1);
|
||||||
memcpy(DeviceState + 4, DeviceState + 5, 2);
|
memmove(DeviceState + 4, DeviceState + 5, 2);
|
||||||
memcpy(DeviceState + 6, DeviceState + 8, 4);
|
memmove(DeviceState + 6, DeviceState + 8, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline
|
static inline
|
||||||
|
|
Loading…
Reference in New Issue