Re: [PATCH v2] staging: rtl8188eu: use %pM specifier instead of passing direct values

2015-03-08 Thread Joe Perches
On Sun, 2015-03-08 at 19:42 +0300, Mike Krinkin wrote: > The patch converts code to use %pM specifier instead of pushing > each byte via stack. Hello Mike. > diff --git a/drivers/staging/rtl8188eu/hal/usb_halinit.c > b/drivers/staging/rtl8188eu/hal/usb_halinit.c [] > @@ -1096,10 +1096,8 @@ stati

Re: [PATCH v2] staging: rtl8188eu: use %pM specifier instead of passing direct values

2015-03-08 Thread Mike Krinkin
On Sun, Mar 08, 2015 at 10:00:52AM -0700, Joe Perches wrote: > On Sun, 2015-03-08 at 19:42 +0300, Mike Krinkin wrote: > > The patch converts code to use %pM specifier instead of pushing > > each byte via stack. > > Hello Mike. > > > diff --git a/drivers/staging/rtl8188eu/hal/usb_halinit.c > > b/

[PATCH v2] staging: rtl8188eu: use %pM specifier instead of passing direct values

2015-03-08 Thread Mike Krinkin
The patch converts code to use %pM specifier instead of pushing each byte via stack. Signed-off-by: Mike Krinkin --- Changes in v2: - use %pM instead %*ph as suggested by Larry Finger. drivers/staging/rtl8188eu/hal/usb_halinit.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) dif