Ich brauche dringende Antwort ......

2014-05-12 Thread Prof. David Pavin
Liebe Gewinner, sind Sie der Eigentьmer von diese e-mail Adresse? Wenn ja, haben wir die Freude, Ihnen mitteilen zu kцnnen, dass diese e-mail Adresse hat gewann danach den Betrag von $ 945.000,00 USD (Neun hundert und vierzig fьnf tausend Vereinigte Staaten Dollar) in der kьrzlich beendeten Int

When is it proper to resend patches?

2014-05-12 Thread Mark Hounschell
I have some patches submitted almost 3 weeks ago that I have not received any email responses to. When should I think about resubmitting them? Or should I just be more patient? Thanks Mark ___ devel mailing list de...@linuxdriverproject.org http://driver

Re: [PATCH] [resend] net: get rid of SET_ETHTOOL_OPS

2014-05-12 Thread Felipe Balbi
On Sun, May 11, 2014 at 12:12:32AM +, Wilfried Klaebe wrote: > net: get rid of SET_ETHTOOL_OPS > > Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone. > This does that. > > Mostly done via coccinelle script: > @@ > struct ethtool_ops *ops; > struct net_device *dev; > @@ > - SET

Re: When is it proper to resend patches?

2014-05-12 Thread Alex Deucher
On Mon, May 12, 2014 at 10:23 AM, Mark Hounschell wrote: > I have some patches submitted almost 3 weeks ago that I have not > received any email responses to. When should I think about resubmitting > them? Or should I just be more patient? Ping them for updates. Alex > > Thanks > Mark > ___

[PATCH 3/4] staging/wlan-ng: code refactoring

2014-05-12 Thread Denis Pithon
Extract new static function from p80211netdev_rx_bh() to fix coding style issue (too many leading tabs). Signed-off-by: Denis Pithon --- drivers/staging/wlan-ng/p80211netdev.c | 74 -- 1 file changed, 43 insertions(+), 31 deletions(-) diff --git a/drivers/staging

[PATCH 2/4] staging/wlan-ng: remove function declaration

2014-05-12 Thread Denis Pithon
Removed useless function prototype: static function p80211netdev_rx_bh() is defined before being used. Signed-off-by: Denis Pithon --- drivers/staging/wlan-ng/p80211netdev.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p8

[PATCH 4/4] staging/wlan-ng: replace printk() with pr_xxx()

2014-05-12 Thread Denis Pithon
Fix some coding style issues concerning printk() usage. Signed-off-by: Denis Pithon --- drivers/staging/wlan-ng/p80211netdev.c | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c in

[PATCH 1/4] staging/wlan-ng: update function header comment

2014-05-12 Thread Denis Pithon
Header comment of p80211netdev_rx_bh() does not match function prototype. Fixed. Signed-off-by: Denis Pithon --- drivers/staging/wlan-ng/p80211netdev.c | 18 +- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/stagin

Re: [Patch V2 0/2] staging: unisys: Fix module loading on non s-Par platform

2014-05-12 Thread Ken Cox
On 04/28/2014 12:23 PM, Ken Cox wrote: Each module now has a check in the init function to ensure that it is being loaded on an s-Par platform and returns an error if it isn't. Also, MODULE_LICENSE("GPL") has been added to visorkmodutils.c. Greg, Have you had a chance to look at these patches y

[PATCH 2/7] staging: unisys: move uislib/platform proc entry to debugfs

2014-05-12 Thread Benjamin Romer
Convert /proc/uislib/platform to an equivalent entry in debugfs. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 62 ++ 1 file changed, 17 insertions(+), 45 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.c b/drivers/sta

[PATCH 3/7] staging: unisys: move uislib/cycles_before_wait proc entry to debugfs

2014-05-12 Thread Benjamin Romer
Convert /proc/uislib/cycles_before_wait to an equivalent entry in debugfs. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 57 +- 1 file changed, 8 insertions(+), 49 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.c b/dr

[PATCH 0/7] staging: unisys: cleanup proc entries in uislib

2014-05-12 Thread Benjamin Romer
This patch series removes old and redundant proc entries from the uislib module, and moves the remaining entries to debugfs. The removed entries are from unit testing of the module and are no longer used. The information in the vbus directory was redundant, so the directory and entries are removed.

[PATCH 6/7] staging: unisys: move uislib/info proc entry to debugfs

2014-05-12 Thread Benjamin Romer
Convert /proc/uislib/info to an equivalent entry under debugfs. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 40 ++ 1 file changed, 16 insertions(+), 24 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.c b/drivers/stag

[PATCH 7/7] staging: unisys: remove remaining proc directory entries

2014-05-12 Thread Benjamin Romer
Finally, remove /proc/uislib and all remaining, redundant entries created under /proc/uislib/vbus. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 92 -- 1 file changed, 92 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.

[PATCH 5/7] staging: unisys: remove functions made redundant in uislib.c

2014-05-12 Thread Benjamin Romer
The patches to move proc files have made the functions uislib_proc_read_writeonly() and stop_chipset() redundant. Remove them. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 33 - 1 file changed, 33 deletions(-) diff --git a/drivers/st

[PATCH 4/7] staging: unisys: move uislib/smart_wakeup proc entry to debugfs

2014-05-12 Thread Benjamin Romer
Convert /proc/uislib/smart_wakeup to an equivalent entry in debugfs. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 59 ++ 1 file changed, 9 insertions(+), 50 deletions(-) diff --git a/drivers/staging/unisys/uislib/uislib.c b/drivers/

[PATCH 1/7] staging: unisys: remove testing proc interfaces from uislib

2014-05-12 Thread Benjamin Romer
Several proc interfaces in the uislib module were intended for debug and testing during initial driver development. They are no longer needed, so we should remove them from the module. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/uislib/uislib.c | 534 +---

Re: When is it proper to resend patches?

2014-05-12 Thread Greg Kroah-Hartman
On Mon, May 12, 2014 at 10:23:12AM -0400, Mark Hounschell wrote: > I have some patches submitted almost 3 weeks ago that I have not > received any email responses to. When should I think about resubmitting > them? Or should I just be more patient? I have a ton of pending patches from you in my "to

Re: [Patch V2 0/2] staging: unisys: Fix module loading on non s-Par platform

2014-05-12 Thread Greg KH
On Mon, May 12, 2014 at 11:37:02AM -0500, Ken Cox wrote: > On 04/28/2014 12:23 PM, Ken Cox wrote: > > Each module now has a check in the init function to ensure that it is being > > loaded on an s-Par platform and returns an error if it isn't. > > > > Also, MODULE_LICENSE("GPL") has been added to v