Re: [PATCH RESEND 16/16] staging: rtl8188eu: remove useless includes

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman Another empty commit message. Larry --- drivers/staging/rtl8188eu/include/osdep_service.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/rtl8188eu/inc

Re: [PATCH RESEND 14/16] staging: rtl8188eu: remove _rtw_down_sema()

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: It's just a wrapper tp down_interruptible(). Typo in line above and see compile warnings below: Larry Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c | 2 +- drivers

Re: [PATCH RESEND 11/16] staging: rtl8723au: remove unimplemented function declarations

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: Signed-off-by: Luca Ceresoli Cc: Greg Kroah-Hartman Cc: Jes Sorensen Cc: Larry Finger Another empty commit message. Larry --- drivers/staging/rtl8723au/include/rtw_cmd.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/r

Re: [PATCH RESEND 06/16] staging: rtl8188eu: rtw_cmd.c: reorder callbacks

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: These callbacks are only referenced from rtw_cmd_callback (rtw_cmd.c), which in turn is only used in rtw_cmd.c (this same file), so they are actually internal functions. rtw_cmd_callback will be moved in this C file, and these callbacks declared stati

Re: [PATCH RESEND 04/16] staging: rtl8188eu: remove unused macro GEN_DRV_CMD_HANDLER

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman Empty commit messages are generally not accepted. Larry --- drivers/staging/rtl8188eu/include/rtw_mlme_ext.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/st

Re: [PATCH RESEND 03/16] staging: rtl8188eu: remove GEN_MLME_EXT_HANDLER

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: This macro has no added value, it makes uselessly code more verbose. Nitpick here. It should be "uselessly makes". Larry Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/include/rtw_mlme_ext.

Re: [PATCH RESEND 01/16] staging: rtl8188eu: rtw_mlme_ext.c: reorder the report functions

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: Some of the report_*() functions are internal and will be declared static, and their declaration removed from rtw_mlme_ext.h, in a later commit. This would break compilation, since they are are referenced before their definition. Reorder these functi

Re: [PATCH RESEND 00/16] staging: rtl8188eu/rtl8723au: misc cleanups

2015-08-28 Thread Larry Finger
On 08/28/2015 03:45 PM, Luca Ceresoli wrote: here's a series of cleanups to rtl8188eu (and one to rtl8723au). I'm just resending the same patches I sent yesterday. Apparently my mailserver got greylisted and all of my messages to osuosl have been discarded. Now it should be fixed. My apologies

[PATCH RESEND 05/16] staging: rtl8188eu: move wlancmds in rtw_cmd.c

2015-08-28 Thread Luca Ceresoli
Even though it is declared in an include file, it is used only in rtw_cmd.c. There's even a preprocessor guard to make sure it is not visible in other modules. It is now useless, so remove it. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/c

[PATCH RESEND 08/16] staging: rtl8188eu: unexport internal functions

2015-08-28 Thread Luca Ceresoli
Since rtw_cmd_callback has been moved to rtw_cmd.c these are internal functions. Remove their declaration in rtw_cmd.h and make them static. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c| 18 -- drivers/sta

[PATCH RESEND 15/16] staging: rtl8188eu: remove _{init, enter, exit}_pwrlock()

2015-08-28 Thread Luca Ceresoli
They are just wrappers to the standard semaphore functions. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_pwrctrl.c| 20 ++-- drivers/staging/rtl8188eu/include/rtw_pwrctrl.h | 15 --- drivers/staging/

[PATCH RESEND 11/16] staging: rtl8723au: remove unimplemented function declarations

2015-08-28 Thread Luca Ceresoli
Signed-off-by: Luca Ceresoli Cc: Greg Kroah-Hartman Cc: Jes Sorensen Cc: Larry Finger --- drivers/staging/rtl8723au/include/rtw_cmd.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/rtl8723au/include/rtw_cmd.h b/drivers/staging/rtl8723au/include/rtw_cmd.h index 4dcc9253be

[PATCH RESEND 01/16] staging: rtl8188eu: rtw_mlme_ext.c: reorder the report functions

2015-08-28 Thread Luca Ceresoli
Some of the report_*() functions are internal and will be declared static, and their declaration removed from rtw_mlme_ext.h, in a later commit. This would break compilation, since they are are referenced before their definition. Reorder these functions so that symbols are defined before they are

[PATCH RESEND 12/16] staging: rtl8188eu: make rtw_init_cmd_priv() void

2015-08-28 Thread Luca Ceresoli
rtw_init_cmd_priv() always returns _SUCCESS, which is fine since it only calls void initializers. Thus, make it void and remove code checking for its return value. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c| 3 +-- driv

[PATCH RESEND 13/16] staging: rtl8188eu: make rtw_init_cmd_priv() inline

2015-08-28 Thread Luca Ceresoli
rtw_init_cmd_priv() is called in one place only, and from another file. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c| 13 - drivers/staging/rtl8188eu/include/rtw_cmd.h | 11 ++- 2 files changed, 10 ins

[PATCH RESEND 16/16] staging: rtl8188eu: remove useless includes

2015-08-28 Thread Luca Ceresoli
Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/include/osdep_service.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/rtl8188eu/include/osdep_service.h b/drivers/staging/rtl8188eu/include/osdep_service.h index 77c075b1be

[PATCH RESEND 00/16] staging: rtl8188eu/rtl8723au: misc cleanups

2015-08-28 Thread Luca Ceresoli
Hi, here's a series of cleanups to rtl8188eu (and one to rtl8723au). I'm just resending the same patches I sent yesterday. Apparently my mailserver got greylisted and all of my messages to osuosl have been discarded. Now it should be fixed. My apologies to the people in Cc: (Greg, Larry, plus Je

[PATCH RESEND 02/16] staging: rtl8188eu: unexport internal functions

2015-08-28 Thread Luca Ceresoli
These are internal functions. Remove their declaration in rtw_mlme_ext.h and make them static. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_mlme_ext.c| 11 ++- drivers/staging/rtl8188eu/include/rtw_mlme_ext.h | 6 -

[PATCH RESEND 14/16] staging: rtl8188eu: remove _rtw_down_sema()

2015-08-28 Thread Luca Ceresoli
It's just a wrapper tp down_interruptible(). Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c | 2 +- drivers/staging/rtl8188eu/include/osdep_service.h | 2 -- drivers/staging/rtl8188eu/include/rtw_pwrctrl.h | 2 +- dr

[PATCH RESEND 10/16] staging: rtl8188eu: remove unused functions

2015-08-28 Thread Luca Ceresoli
...one of which is not even implemented. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c| 7 --- drivers/staging/rtl8188eu/include/rtw_cmd.h | 4 2 files changed, 11 deletions(-) diff --git a/drivers/staging/rtl818

[PATCH RESEND 07/16] staging: rtl8188eu: move rtw_cmd_callback in rtw_cmd.c

2015-08-28 Thread Luca Ceresoli
Even though it is declared in an include file, it is used only in rtw_cmd.c. There's even a preprocessor guard to make sure it is not visible in other modules. It is now useless, so remove it. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/c

[PATCH RESEND 06/16] staging: rtl8188eu: rtw_cmd.c: reorder callbacks

2015-08-28 Thread Luca Ceresoli
These callbacks are only referenced from rtw_cmd_callback (rtw_cmd.c), which in turn is only used in rtw_cmd.c (this same file), so they are actually internal functions. rtw_cmd_callback will be moved in this C file, and these callbacks declared static, in a later commit. This would break compila

[PATCH RESEND 09/16] staging: rtl8188eu: remove _RTW_CMD_C_

2015-08-28 Thread Luca Ceresoli
All usages of this macro have been removed in earlier commits, so get rid of it. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/core/rtw_cmd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_cmd.c b/driv

[PATCH RESEND 03/16] staging: rtl8188eu: remove GEN_MLME_EXT_HANDLER

2015-08-28 Thread Luca Ceresoli
This macro has no added value, it makes uselessly code more verbose. Signed-off-by: Luca Ceresoli Cc: Larry Finger Cc: Greg Kroah-Hartman --- drivers/staging/rtl8188eu/include/rtw_mlme_ext.h | 31 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/drivers/

"Dear, i need an investment Partner"

2015-08-28 Thread Mrs Aisha Gaddafi
Dear Partner, I came across your email contact via a private search. I am Mrs. Aisha Gaddafi, 38years old and a widow with three children, i am the only biological daughter of late Libyan President by birth and my Father(Muammar Gaddafi) was killed on 20 October 2011 and three of my Brother wer

Re: [PATCH v7 10/44] [media] media: rename the function that create pad links

2015-08-28 Thread Mauro Carvalho Chehab
Em Wed, 26 Aug 2015 11:54:03 -0300 Mauro Carvalho Chehab escreveu: > Em Tue, 25 Aug 2015 12:55:41 -0600 > Shuah Khan escreveu: > > > On 08/23/2015 02:17 PM, Mauro Carvalho Chehab wrote: > > > Now that a link can be either between two different graph > > > objects, we'll need to add more functio