Re: [PATCH 21/24] ath6kl: add txrx.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:36 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo > drivers/net/wireless/ath/ath6kl/txrx.c | 1471 > [] > +int ath6kl_control_tx(void *devt, struct sk_buff *skb, > + enum htc_endpoint_id eid) > +{ [] > + ath6kl_

Re: [PATCH 17/24] ath6kl: add main.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:35 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo > --- > drivers/net/wireless/ath/ath6kl/main.c | 1337 > > +static void ath6kl_add_new_sta(struct ath6kl *ar, u8 *mac, u16 aid, u8 > *wpaie, > + u8 ielen, u8 key

Re: [PATCH 11/24] ath6kl: add htc.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:34 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo > diff --git a/drivers/net/wireless/ath/ath6kl/htc.c > b/drivers/net/wireless/ath/ath6kl/htc.c [] > +static void htc_tx_comp_update(struct htc_target *target, > +struct htc_endpoint *end

Re: [PATCH 07/24] ath6kl: add debug.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:34 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo [] > +int ath6kl_printk(const char *level, const char *fmt, ...) Looks familiar. > +#ifdef CONFIG_ATH6KL_DEBUG > +void ath6kl_dump_registers(struct ath6kl_device *dev, > +struct ath6kl_irq_

Re: [PATCH 06/24] ath6kl: add core.h

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:33 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo > diff --git a/drivers/net/wireless/ath/ath6kl/core.h > b/drivers/net/wireless/ath/ath6kl/core.h [] > +/* Pkt log info */ > +struct pkt_log { > + struct info { > + __le16 st; > + __le16

Re: [PATCH 03/24] ath6kl: add cfg80211.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:33 +0300, Kalle Valo wrote: > Signed-off-by: Kalle Valo > diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c > b/drivers/net/wireless/ath/ath6kl/cfg80211.c [] > +static struct ieee80211_rate ath6kl_rates[] = { const? > +static struct ieee80211_channel ath6kl_2ghz

Re: [PATCH 01/24] ath6kl: add bmi.c

2011-07-12 Thread Joe Perches
On Wed, 2011-07-13 at 04:33 +0300, Kalle Valo wrote: > diff --git a/drivers/net/wireless/ath/ath6kl/bmi.c > b/drivers/net/wireless/ath/ath6kl/bmi.c [] > + ath6kl_err("Unable to decrement the command " > +"credit count register: %d\n", ret); I

[PATCH 24/24] ath6kl: add Kconfig and Makefile

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/Kconfig |1 + drivers/net/wireless/ath/Makefile|1 + drivers/net/wireless/ath/ath6kl/Kconfig | 17 +++ drivers/net/wireless/ath/ath6kl/Makefile | 35 ++ 4 files changed, 54

[PATCH 23/24] ath6kl: add wmi.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/wmi.h | 2049 + 1 files changed, 2049 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/wmi.h diff --git a/drivers/net/wireless/ath/ath6kl/wmi.h b/drivers/net/wireless/a

[PATCH 21/24] ath6kl: add txrx.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/txrx.c | 1471 1 files changed, 1471 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/txrx.c diff --git a/drivers/net/wireless/ath/ath6kl/txrx.c b/drivers/net/wireless

[PATCH 20/24] ath6kl: add target.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/target.h | 331 ++ 1 files changed, 331 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/target.h diff --git a/drivers/net/wireless/ath/ath6kl/target.h b/drivers/net/wirel

[PATCH 19/24] ath6kl: add sdio.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/sdio.c | 857 1 files changed, 857 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/sdio.c diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/

[PATCH 13/24] ath6kl: add htc_hif.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/htc_hif.c | 813 + 1 files changed, 813 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/htc_hif.c diff --git a/drivers/net/wireless/ath/ath6kl/htc_hif.c b/drivers/net/wir

[PATCH 18/24] ath6kl: add node.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/node.c | 239 1 files changed, 239 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/node.c diff --git a/drivers/net/wireless/ath/ath6kl/node.c b/drivers/net/wireless/

[PATCH 17/24] ath6kl: add main.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/main.c | 1337 1 files changed, 1337 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/main.c diff --git a/drivers/net/wireless/ath/ath6kl/main.c b/drivers/net/wireless

[PATCH 16/24] ath6kl: add init.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/init.c | 1315 1 files changed, 1315 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/init.c diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless

[PATCH 12/24] ath6kl: add htc.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/htc.h | 592 + 1 files changed, 592 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/htc.h diff --git a/drivers/net/wireless/ath/ath6kl/htc.h b/drivers/net/wireless/at

[PATCH 15/24] ath6kl: add ieee80211.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/ieee80211.h | 158 +++ 1 files changed, 158 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/ieee80211.h diff --git a/drivers/net/wireless/ath/ath6kl/ieee80211.h b/drivers/net

[PATCH 14/24] ath6kl: add htc_hif.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/htc_hif.h | 112 + 1 files changed, 112 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/htc_hif.h diff --git a/drivers/net/wireless/ath/ath6kl/htc_hif.h b/drivers/net/wir

[PATCH 07/24] ath6kl: add debug.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/debug.c | 151 +++ 1 files changed, 151 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/debug.c diff --git a/drivers/net/wireless/ath/ath6kl/debug.c b/drivers/net/wireles

[PATCH 06/24] ath6kl: add core.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/core.h | 518 1 files changed, 518 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/core.h diff --git a/drivers/net/wireless/ath/ath6kl/core.h b/drivers/net/wireless/

[PATCH 08/24] ath6kl: add debug.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/debug.h | 103 +++ 1 files changed, 103 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/debug.h diff --git a/drivers/net/wireless/ath/ath6kl/debug.h b/drivers/net/wireles

[PATCH 10/24] ath6kl: add hif.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/hif.h | 214 + 1 files changed, 214 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/hif.h diff --git a/drivers/net/wireless/ath/ath6kl/hif.h b/drivers/net/wireless/at

[PATCH 04/24] ath6kl: add cfg80211.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/cfg80211.h | 39 1 files changed, 39 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/cfg80211.h diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.h b/drivers/net/wi

[PATCH 09/24] ath6kl: add hif-ops.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/hif-ops.h | 67 + 1 files changed, 67 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/hif-ops.h diff --git a/drivers/net/wireless/ath/ath6kl/hif-ops.h b/drivers/net/wire

[PATCH 05/24] ath6kl: add common.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/common.h | 163 ++ 1 files changed, 163 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/common.h diff --git a/drivers/net/wireless/ath/ath6kl/common.h b/drivers/net/wirel

[PATCH 02/24] ath6kl: add bmi.h

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/bmi.h | 250 + 1 files changed, 250 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/bmi.h diff --git a/drivers/net/wireless/ath/ath6kl/bmi.h b/drivers/net/wireless/at

[PATCH 03/24] ath6kl: add cfg80211.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/cfg80211.c | 1641 1 files changed, 1641 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/cfg80211.c diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/

[PATCH 00/24] ath6kl cleaned up driver

2011-07-12 Thread Kalle Valo
Hello, last May we started working on cleaning up ath6kl driver which is currently in staging. The work has happened in a separate ath6kl-cleanup tree: http://git.kernel.org/?p=linux/kernel/git/kvalo/ath6kl-cleanup.git;a=summary After over 1100 (!) patches we have now reached a state where I wou

[PATCH 01/24] ath6kl: add bmi.c

2011-07-12 Thread Kalle Valo
Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath6kl/bmi.c | 692 + 1 files changed, 692 insertions(+), 0 deletions(-) create mode 100644 drivers/net/wireless/ath/ath6kl/bmi.c diff --git a/drivers/net/wireless/ath/ath6kl/bmi.c b/drivers/net/wireless/at

Re: [PATCH 1/6] staging: rtl8192e: Remove code dependent on RTL8190P

2011-07-12 Thread Larry Finger
On 07/12/2011 04:26 PM, Dan Carpenter wrote: @@ -1712,25 +1602,6 @@ void rtl8192_query_rxphystatus( { u8 report; -#ifdef RTL8190P - u8 tmp_pwdb; - char cck_adc_pwdb[4]; -#endif - priv->stats.numqry_phystatusCCK++;

Re: [PATCH 1/6] staging: rtl8192e: Remove code dependent on RTL8190P

2011-07-12 Thread Dan Carpenter
> @@ -1712,25 +1602,6 @@ void rtl8192_query_rxphystatus( > { > > u8 report; > -#ifdef RTL8190P > - u8 tmp_pwdb; > - char cck_adc_pwdb[4]; > -#endif > - priv->stats.numqry_phystatusCCK++; ^^ Di

winner of £950,000.00

2011-07-12 Thread Mercedes Benz
£950,000.00 GBP was awarded to your Id in our British Mercedes Benz Promo file your claims contact our fiduciary agent for claims:Name...Address..Tel..Country Email:jerry-smit...@live.co.uk ___ devel mailing list devel@linu

[RFC/RFT] staging: rtl8192e: Fix kernel panics when skb allocation fails

2011-07-12 Thread Larry Finger
This driver uses skb's of O(2), thus it is possible for memory fragmentation to prevent the allocation of a new one to replace a newly-received buffer. When such a failure occurs, the kernel panics. The fix is to drop an incoming packet whenever such an allocation fails. This fix matches the one d

[PATCH 5/6] staging: rtl8192e: Remove dead code associated with RTL8192U

2011-07-12 Thread Larry Finger
>From d8dd08be2ebae46f92bed076756e77cc18973abc Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 11 Jul 2011 22:52:12 -0500 Subject: [PATCH 5/5] staging: rtl8192e: Remove dead code associated with RTL8192U Signed-off-by: Larry Finger --- drivers/staging/rtl8192e/rtl819x_HTProc.c | 21 --

[PATCH 0/6] staging: rtl8192e: Remove conditional code used to generate drivers for unneeded devices

2011-07-12 Thread Larry Finger
These patches are all contingent on the acceptance/inclusion of the series submitted by Mike McCormack under the general heading of "[PATCH 0/8] Import new RTL8192E driver". The code base can be used to generate a number of drivers for differing devices. Some of these are already supported by mac8

[PATCH 6/6] staging: rtl8192e: Remove internal references to RTL8192E

2011-07-12 Thread Larry Finger
>From c92ed2d14c66d17049d7fce305c27dede47f0ce5 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Tue, 12 Jul 2011 11:12:56 -0500 Subject: [PATCH] staging: rtl8192e: Remove internal references to RTL8192E Now that the code can only generate a driver for RTL8192E, the internal ifdef's are no longer

[PATCH 4/6] staging: rtl8192e: Remove dead code associated with RTL8192SU

2011-07-12 Thread Larry Finger
>From 86b0673f3e3d01f699aae5077694f77640ed3440 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 11 Jul 2011 22:43:02 -0500 Subject: [PATCH 4/5] staging: rtl8192e: Remove dead code associated with RTL8192SU The vendor code will generate several different drivers. Eliminate code used to gen

[PATCH 1/6] staging: rtl8192e: Remove code dependent on RTL8190P

2011-07-12 Thread Larry Finger
>From 82c0d88d31b6d334bf78c20d8ba5927475a3cc0d Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 11 Jul 2011 18:34:09 -0500 Subject: [PATCH 1/5] staging: rtl8192e: Remove code dependent on RTL8190P The vendor code can conditionally generate drivers for a number of devices. Remove any code th

[PATCH 3/6] staging: rtl8192e: Remove dead code associated with RTL8192CE

2011-07-12 Thread Larry Finger
>From 7a18369726d968b1c5188654723f8eb1afc27787 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 11 Jul 2011 22:37:27 -0500 Subject: [PATCH 3/5] staging: rtl8192e: Remove dead code associated with RTL8192CE The vendor code will generate several different drivers. As the RTL8192CE is covered

[PATCH 24/24] Staging: comedi: fix warning: line over 80 character issue in das800.c

2011-07-12 Thread Ravishankar
From: Ravishankar This is a patch to the das800.c file that fixes up a warning: line over 80 character found by the checkpatch.pl tool Signed-off-by: Ravishankar --- There was a indentation not proper now it's fixed --- drivers/staging/comedi/drivers/das800.c |2 +- 1 files changed, 1 i

[PATCH 23/23] Staging: comedi: fix warning: line over 80 character issue in das800.c

2011-07-12 Thread Ravishankar
From: Ravishankar This is a patch to the das800.c file that fixes up a warning: line over 80 character found by the checkpatch.pl tool Signed-off-by: Ravishankar --- drivers/staging/comedi/drivers/das800.c | 62 +-- 1 files changed, 42 insertions(+), 20 deletion

Re: [staging] mei: Enable msi when supported

2011-07-12 Thread Maarten Lankhorst
Hi Tomas, On 07/07/2011 02:23 PM, Winkler, Tomas wrote: >> -Original Message- >> From: Maarten Lankhorst [mailto:m.b.lankho...@gmail.com] >> Sent: Thursday, July 07, 2011 2:32 PM >> To: Winkler, Tomas >> Cc: devel@linuxdriverproject.org; Linux Kernel Mailing List >> Subject: [staging] mei:

[PATCH 22/22] Staging: comedi: fix warning:line over 80 character issue in ke_counter.c

2011-07-12 Thread Ravishankar
From: Ravishankar This is a patch to the ke_counter.c file that fixes up a warning: line over 80 character found by the checkpatch.pl tool Signed-off-by: Ravishankar --- drivers/staging/comedi/drivers/ke_counter.c |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a

[PATCH 3/3] Staging: rtl8192e: fixed style issues found by checkpatch.pl

2011-07-12 Thread Prashant P. Shah
This is a patch to the r8192E_core.c file that fixes whitespace related style issues found by the checkpatch.pl tool Signed-off-by: Prashant P. Shah --- drivers/staging/rtl8192e/r8192E_core.c | 196 1 files changed, 98 insertions(+), 98 deletions(-) diff --git

[PATCH 2/3] Staging: rtl8192e: fixed style issues found by checkpatch.pl

2011-07-12 Thread Prashant P. Shah
This is a patch to the r8190_rtl8256.c file that fixes whitespace related style issues found by the checkpatch.pl tool Signed-off-by: Prashant P. Shah --- drivers/staging/rtl8192e/r8190_rtl8256.c | 114 +++--- 1 files changed, 57 insertions(+), 57 deletions(-) diff --gi

[PATCH 1/3] Staging: rtl8192e: fixed style issues found by checkpatch.pl

2011-07-12 Thread Prashant P. Shah
This is a patch to the r8180_93cx6.c file that fixes style issues found by the checkpatch.pl tool - extra spaces - invalid comment style Signed-off-by: Prashant P. Shah --- drivers/staging/rtl8192e/r8180_93cx6.c | 22 ++ 1 files changed, 14 insertions(+), 8 deletions(-) di

[PATCH 21/21] Staging: comedi: fix braces and line over 80 character style issue in ni_at_12150.c

2011-07-12 Thread Ravishankar
From: Ravishankar This is a patch to the ni_at_12150.c file that fixes up a braces and line over 80 character warning found by the checkpatch.pl tool Signed-off-by: Ravishankar --- drivers/staging/comedi/drivers/ni_at_a2150.c | 39 ++ 1 files changed, 21 insertions(+

Animated Movie/TV Series - Cartoon Movie/TV Series - 3D/2D Animation Services

2011-07-12 Thread Louis
You are receiving this email because we wish you to use our 3D/2D Animated Movie/TV Series Services. We are a China based Animated Movie/TV Series Studio. with the technical, our studio is a animation studio with the technical, creative and production capabilities to create a new generation of

[PATCH 20/20] Staging: comedi: fix warning: line over 80 character issue in pcl812.c

2011-07-12 Thread Ravishankar
From: Ravishankar This is a patch to the pcl812.c file that fixes up a warning:line over 80 character found by the checkpatch.pl tool Signed-off-by: Ravishankar --- drivers/staging/comedi/drivers/pcl812.c | 15 ++- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a