Re: [PATCH 1/2] Staging: slicoss: Clean up tabs vs spaces in slic.h

2012-07-23 Thread Dan Carpenter
On Sun, Jul 22, 2012 at 10:57:09PM +0200, Jesper Juhl wrote: Make it match CodingStyle a bit better, tab/space wise. Signed-off-by: Jesper Juhl j...@chaosbits.net --- drivers/staging/slicoss/slic.h | 751 - 1 file changed, 374 insertions(+), 377

Re: [PATCH 2/2] Staging: slicoss: Clean up spaces vs tabs in slicoss.c

2012-07-23 Thread Dan Carpenter
On Sun, Jul 22, 2012 at 10:57:20PM +0200, Jesper Juhl wrote: @@ -154,7 +154,7 @@ static void slic_assert_fail(void) curr_pid = current-pid; printk(KERN_ERR %s CPU # %d PID # %d\n, -__func__, cpuid, curr_pid); + __func__, cpuid, curr_pid); The

Re: [PATCH 1/2] Staging: slicoss: Clean up tabs vs spaces in slic.h

2012-07-23 Thread Jesper Juhl
On Mon, 23 Jul 2012, Dan Carpenter wrote: On Sun, Jul 22, 2012 at 10:57:09PM +0200, Jesper Juhl wrote: Make it match CodingStyle a bit better, tab/space wise. Signed-off-by: Jesper Juhl j...@chaosbits.net --- drivers/staging/slicoss/slic.h | 751

[PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread wei_wang
From: Wei WANG wei_w...@realsil.com.cn Realtek card reader core driver is the bus driver for Realtek driver-based card reader, which supplies adapter layer to be used by lower-level pci/usb card reader and upper-level sdmmc/memstick host driver. Signed-off-by: Wei WANG wei_w...@realsil.com.cn

[PATCH 3/3] drivers/mmc/host: Add realtek sdmmc interface driver

2012-07-23 Thread wei_wang
From: Wei WANG wei_w...@realsil.com.cn Realtek SD/MMC card interface driver is used to access SD/MMC card, with the help of Realtek card reader adapter driver. Signed-off-by: Wei WANG wei_w...@realsil.com.cn --- drivers/mmc/host/Kconfig |7 + drivers/mmc/host/Makefile |2 +

re: staging: comedi: cb_pcidas: remove forward declarations 1

2012-07-23 Thread Dan Carpenter
Hello H Hartley Sweeten, This is a semi-automatic email about new static checker warnings. The patch e74f209ca995: staging: comedi: cb_pcidas: remove forward declarations 1 from Jun 26, 2012, leads to the following Smatch complaint: drivers/staging/comedi/drivers/cb_pcidas.c:1720

Re: [PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread Dan Carpenter
On Mon, Jul 23, 2012 at 05:42:38PM +0800, wei_w...@realsil.com.cn wrote: + +#define wait_timeout_x(task_state, msecs)\ +do { \ + set_current_state((task_state));\ +

Re: [PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread Borislav Petkov
On Mon, Jul 23, 2012 at 05:42:38PM +0800, wei_w...@realsil.com.cn wrote: From: Wei WANG wei_w...@realsil.com.cn Realtek card reader core driver is the bus driver for Realtek driver-based card reader, which supplies adapter layer to be used by lower-level pci/usb card reader and upper-level

Re: [PATCH 2/3] drivers/misc: Add realtek pci card reader driver

2012-07-23 Thread Borislav Petkov
On Mon, Jul 23, 2012 at 05:42:44PM +0800, wei_w...@realsil.com.cn wrote: From: Wei WANG wei_w...@realsil.com.cn Realtek PCI-E card reader driver adapts requests from upper-level sdmmc/memstick layer to the real physical card reader. Signed-off-by: Wei WANG wei_w...@realsil.com.cn

[PATCH NEXT]staging tidspbridge Fix typos.

2012-07-23 Thread Justin P. Mattock
From: Justin P. Mattock justinmatt...@gmail.com Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- The below patch fixes some typos found while reading through staging tidspbridge. .../staging/tidspbridge/Documentation/error-codes |2 +-

Finance/ Loan offer

2012-07-23 Thread Cheryl Finance
I am offering financial assistance with less payback for just 2% Interest rate to individuals and companies. Flexible repayment for 3 to 25 years. To apply for a loan send us your information. Contact us today at: cherylfina...@msn.com Thank you. Cheryl Janz

Re: [PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread Matthew Garrett
On Mon, Jul 23, 2012 at 05:42:38PM +0800, wei_w...@realsil.com.cn wrote: +SUBSYSTEM==rtsx_cr, ENV{RTSX_CARD_TYPE}==SD, RUN+=/sbin/modprobe -bv rtsx_sdmmc Ugh. Expose a modalias instead? I know tifm does it like this, but that's probably also an argument for fixing tifm. -- Matthew Garrett |

Re: [PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread Borislav Petkov
On Mon, Jul 23, 2012 at 05:42:38PM +0800, wei_w...@realsil.com.cn wrote: From: Wei WANG wei_w...@realsil.com.cn Realtek card reader core driver is the bus driver for Realtek driver-based card reader, which supplies adapter layer to be used by lower-level pci/usb card reader and upper-level

Re: [PATCH 3/3] drivers/mmc/host: Add realtek sdmmc interface driver

2012-07-23 Thread Borislav Petkov
On Mon, Jul 23, 2012 at 05:42:51PM +0800, wei_w...@realsil.com.cn wrote: +static void realtek_init_host(struct realtek_sdmmc *host) +{ + struct mmc_host *mmc = host-mmc; + + mmc-f_min = 25; + mmc-f_max = 20800; + mmc-ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34 |

[PATCH 0/5] staging: ozwpan: Various Bug fixes

2012-07-23 Thread Rupesh Gujare
This patch series fixes various bugs found during development bumps version number to keep it in sync with internal version number. Rupesh Gujare (5): staging: ozwpan: buffer frame if urb not available. staging: ozwpan: Insulate driver from HZ value staging: ozwpan: Return correct

[PATCH 2/5] staging: ozwpan: Insulate driver from HZ value

2012-07-23 Thread Rupesh Gujare
This patch fixes issue caused due to different HZ value on system which do not have HZ=1000 Signed-off-by: Rupesh Gujare rguj...@ozmodevices.com --- drivers/staging/ozwpan/ozhcd.c |8 drivers/staging/ozwpan/ozproto.h |2 +- 2 files changed, 5 insertions(+), 5 deletions(-)

[PATCH 3/5] staging: ozwpan: Return correct actual_length to userland

2012-07-23 Thread Rupesh Gujare
This fixes issue where wrong retrun value was received by userland application after writing data to raw hid device. Signed-off-by: Rupesh Gujare rguj...@ozmodevices.com --- drivers/staging/ozwpan/ozhcd.c | 14 -- 1 files changed, 8 insertions(+), 6 deletions(-) diff --git

[PATCH 5/5] staging: ozwpan: Bump version number

2012-07-23 Thread Rupesh Gujare
Bump version numbers to keep in sync with internal version information. Signed-off-by: Rupesh Gujare rguj...@ozmodevices.com --- drivers/staging/ozwpan/ozmain.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/ozwpan/ozmain.c

[PATCH 1/5] staging: ozwpan: buffer frame if urb not available.

2012-07-23 Thread Rupesh Gujare
For interrupt end point buffer frames, if urb is not available give back as soon as urb is received from usb core. Signed-off-by: Rupesh Gujare rguj...@ozmodevices.com --- drivers/staging/ozwpan/ozhcd.c | 67 +-- 1 files changed, 63 insertions(+), 4

[PATCH 4/5] staging: ozwpan: isoc latency for audio burst

2012-07-23 Thread Rupesh Gujare
Set audio latency. This fixes issue where audio clips heard during link outage. Signed-off-by: Rupesh Gujare rguj...@ozmodevices.com --- drivers/staging/ozwpan/ozpd.c |8 +--- drivers/staging/ozwpan/ozpd.h |1 + drivers/staging/ozwpan/ozproto.c| 13 +

Re: [PATCH NEXT]staging tidspbridge Fix typos.

2012-07-23 Thread Ramirez Luna, Omar
Hi Justin, On Mon, Jul 23, 2012 at 8:49 AM, Justin P. Mattock justinmatt...@gmail.com wrote: diff --git a/drivers/staging/tidspbridge/core/tiomap3430.c b/drivers/staging/tidspbridge/core/tiomap3430.c index f9609ce..2c82d5a 100644 --- a/drivers/staging/tidspbridge/core/tiomap3430.c +++

Re: [PATCH 1/3] zsmalloc: s/firstpage/page in new copy map funcs

2012-07-23 Thread Seth Jennings
Greg, I know it's the first Monday after a kernel release and things are crazy for you. I was hoping to get this zsmalloc stuff in before the merge window hit so I wouldn't have to bother you :-/ But, alas, it didn't happen that way. Minchan acked these yesterday. When you get a chance, could

Re: [PATCH 1/3] zsmalloc: s/firstpage/page in new copy map funcs

2012-07-23 Thread Greg Kroah-Hartman
On Mon, Jul 23, 2012 at 05:10:39PM -0500, Seth Jennings wrote: Greg, I know it's the first Monday after a kernel release and things are crazy for you. I was hoping to get this zsmalloc stuff in before the merge window hit so I wouldn't have to bother you :-/ But, alas, it didn't happen

[PATCH] staging: gdm72xx: fix reference counting in gdm_wimax_event_init

2012-07-23 Thread Ben Chan
This patch fixes commit 8df858ea76b76dde9a39d4edd9aaded983582cfe, which mishandles the reference counting of wm_event. Signed-off-by: Ben Chan benc...@chromium.org --- drivers/staging/gdm72xx/gdm_wimax.c | 16 ++-- 1 files changed, 10 insertions(+), 6 deletions(-) diff --git

因第{三}方的责任而产生医疗费 用的,能否报/销

2012-07-23 Thread ��
怎 样规定派遣员 工的辞@职程序和离职责 任.xls Description: Binary data ___ devel mailing list devel@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Re: [PATCH 1/3] drivers/misc: Add realtek card reader core driver

2012-07-23 Thread wwang
Hi Borislav: Realtek card reader supports not only SDMMC card, but also Memory stick. This part is the common code, so it is located in drivers/misc. There is also SDMMC-relevant code under CONFIG_MMC. And in the future, Memstick-relevant code will be added under CONFIG_MEMSTICK. BR, wwang

Re: [PATCH 1/3] zsmalloc: s/firstpage/page in new copy map funcs

2012-07-23 Thread Minchan Kim
Hi Greg, On Mon, Jul 23, 2012 at 03:27:49PM -0700, Greg Kroah-Hartman wrote: On Mon, Jul 23, 2012 at 05:10:39PM -0500, Seth Jennings wrote: Greg, I know it's the first Monday after a kernel release and things are crazy for you. I was hoping to get this zsmalloc stuff in before the

Re: [PATCH NEXT]staging tidspbridge Fix typos.

2012-07-23 Thread Justin P. Mattock
On 07/23/2012 01:44 PM, Ramirez Luna, Omar wrote: Hi Justin, On Mon, Jul 23, 2012 at 8:49 AM, Justin P. Mattock justinmatt...@gmail.com wrote: diff --git a/drivers/staging/tidspbridge/core/tiomap3430.c b/drivers/staging/tidspbridge/core/tiomap3430.c index f9609ce..2c82d5a 100644 ---

[PATCH NEXT v2]staging: tidspbridge: Fix typos.

2012-07-23 Thread Justin P. Mattock
From: Justin P. Mattock justinmatt...@gmail.com Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- The below patch fixes typos found while reading through staging: tidsbridge: .../staging/tidspbridge/Documentation/error-codes |2 +- drivers/staging/tidspbridge/core/_tiomap.h