Re: [PATCH] staging: rtl8188eu: fixed width data types replaced by int

2015-10-27 Thread Dan Carpenter
On Tue, Oct 27, 2015 at 12:04:12AM +0700, Ivan Safonov wrote: > There is no need to use fixed width data types. > True enough, this patch is fine. But we use u32 for "unsigned int" in many places just because it is shorter to type. Don't do a wholesale changing of these types. There should

[PATCH] staging: rtl8188eu: fixed width data types replaced by int

2015-10-26 Thread Ivan Safonov
There is no need to use fixed width data types. Signed-off-by: Ivan Safonov --- drivers/staging/rtl8188eu/core/rtw_debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_debug.c