Re: Fwd: linux driver for rt2070

2010-11-07 Thread Joilnen Leite
r...@darkstar:~# lspci -n -s 02:00.0 02:00.0 0200: 10ec:8136 (rev 02) Joilnen On Sun, Nov 7, 2010 at 7:37 PM, Greg KH wrote: > On Sun, Nov 07, 2010 at 05:09:35PM -0200, Joilnen Leite wrote: >> -- Forwarded message -- >> From: Joilnen Leite >> Date: Sun, Nov 7, 2010 at 5:08 PM >>

Re: [PATCH] staging:comedi:drivers:poc- fixed comment issue giving annoying warnings

2010-11-07 Thread Greg KH
On Sun, Nov 07, 2010 at 07:51:28PM -0500, Henry Eshbaugh wrote: > >From 1ad8af3b51b51ea253923d2fe4180efda337c2cd Mon Sep 17 00:00:00 2001 > From: Henry Eshbaugh > Date: Sat, 6 Nov 2010 10:23:53 -0400 > Subject: [PATCH] staging:comedi:drivers:poc- fixed comment issue giving > annoying warnings > >

Re: [PATCH] staging, comedi, das16: das16_attach() needs to free allocated resources on failure

2010-11-07 Thread Jesper Juhl
On Sun, 7 Nov 2010, Frank Mori Hess wrote: > On Sunday 07 November 2010, Jesper Juhl wrote: > > Hi, > > > > In drivers/staging/comedi/drivers/das16.c::das16_attach() there are many > > potential failure scenarios. However, the driver neglects to free > > resources it has allocated if failures happ

Re: [PATCH] staging, comedi, das16: das16_attach() needs to free allocated resources on failure

2010-11-07 Thread Frank Mori Hess
On Sunday 07 November 2010, Jesper Juhl wrote: > Hi, > > In drivers/staging/comedi/drivers/das16.c::das16_attach() there are many > potential failure scenarios. However, the driver neglects to free > resources it has allocated if failures happen. This patch appears to be wrong. The driver's detac

Re: Fwd: linux driver for rt2070

2010-11-07 Thread Greg KH
On Sun, Nov 07, 2010 at 05:09:35PM -0200, Joilnen Leite wrote: > -- Forwarded message -- > From: Joilnen Leite > Date: Sun, Nov 7, 2010 at 5:08 PM > Subject: Re: linux driver for rt2070 > To: Greg KH > > > 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. > RTL8101E/R

[PATCH] drivers/staging/cx25821: Use pr_fmt and pr_

2010-11-07 Thread Joe Perches
Fix several defects with bad line continuation uses that introduce whitespace. Fix several defects with lines missing "\n". Standardize prefixes via pr_fmt. Remove internal cx25821 prefixes. Standardize :%s():" ... __func__ uses. Coalesce long formats. Add KERN_ prefixes via pr_ to printks. Signed

[PATCH] staging, comedi, das16: das16_attach() needs to free allocated resources on failure

2010-11-07 Thread Jesper Juhl
Hi, In drivers/staging/comedi/drivers/das16.c::das16_attach() there are many potential failure scenarios. However, the driver neglects to free resources it has allocated if failures happen. This patch changes that so that all allocated resources are freed on error in proper order. Unfortunatel

[PATCH 9/9] staging/easycap: Improve interface to the videodev module

2010-11-07 Thread Mike Thomas
The changes here represent an intermediate step towards bringing the driver within the V4L2 framework. Signed-off-by: Mike Thomas --- drivers/staging/easycap/README | 93 -- drivers/staging/easycap/easycap.h | 16 +--- drivers/staging/easycap/easycap_ioctl.c |

[PATCH 7/9] staging/easycap: Avoid compiler warning about frame size ... larger than ...

2010-11-07 Thread Mike Thomas
Replacing some of the large automatic variables by dynamically allocated variables in the IOCTL routines gets rid of the compiler warning. Signed-off-by: Mike Thomas --- drivers/staging/easycap/easycap_ioctl.c | 155 +++ 1 files changed, 96 insertions(+), 59 deletion

[PATCH 6/9] staging/easycap: Add option to set the hardware audio gain

2010-11-07 Thread Mike Thomas
A new module parameter adjusts the gain of the AC'97 audio chip, if one is present. Attenuation as well as amplification should be possible according to the datasheet, but attenuation seems not to work yet. Signed-off-by: Mike Thomas --- drivers/staging/easycap/easycap_debug.h |1 + drivers

[PATCH 5/9] staging/easycap: Add option to show conspicuous indication of signal loss

2010-11-07 Thread Mike Thomas
A new module parameter turns on the option of displaying a testcard when the analogue input signal is lost (more precisely: when the hardware detects no field/frame synchronization). This feature has been requested in the context of security cameras used at night. Signed-off-by: Mike Thomas ---

[PATCH 4/9] staging/easycap: Implement interlaced modes and reduced framerates

2010-11-07 Thread Mike Thomas
Interlaced modes are requested by tvtime. Reduced framerates are preferred by some userspace programs, e.g. astronomy applications. Signed-off-by: Mike Thomas --- drivers/staging/easycap/easycap.h | 16 +- drivers/staging/easycap/easycap_ioctl.c| 338

Fwd: linux driver for rt2070

2010-11-07 Thread Joilnen Leite
-- Forwarded message -- From: Joilnen Leite Date: Sun, Nov 7, 2010 at 5:08 PM Subject: Re: linux driver for rt2070 To: Greg KH 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)        Subsystem: Device 19

Re: linux driver for rt2070

2010-11-07 Thread Greg KH
On Sun, Nov 07, 2010 at 03:33:03PM -0200, Joilnen Leite wrote: > Wondering, the driver for ethernet card realtek RTL8102E/RTL8102E are > just in tree too ? They should be, have you checked? What is the pci ids of your device? thanks, greg k-h ___ deve

Re: linux driver for rt2070

2010-11-07 Thread Joilnen Leite
Wondering, the driver for ethernet card realtek RTL8102E/RTL8102E are just in tree too ? Joilnen ___ devel mailing list devel@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

[PATCH 5/5] Staging: ath6kl: Update segment limit checking

2010-11-07 Thread Ben Hutchings
Commit a36274e0184193e393fb82957925c3981a6b0477 ("mmc: Remove distinction between hw and phys segments") changed the segment limit fields of struct mmc_host but did not update this driver. Signed-off-by: Ben Hutchings --- Compile-tested only. This should be 2.6.37 material. Ben. .../ath6kl/hi

[PATCH 4/5] Staging: solo6x10: Pass new parameter to videobuf_queue_dma_contig_init()

2010-11-07 Thread Ben Hutchings
Commit 08bff03ed697a583612b62a6ac566bd5bce98012 ("V4L/DVB: videobuf: add ext_lock argument to the queue init functions") added a parameter to this function but did not update this driver. Signed-off-by: Ben Hutchings --- Compile-tested only. This should be 2.6.37 material. Ben. drivers/stagin

[PATCH 3/5] Staging: Update parameters for cfg80211 key management operation

2010-11-07 Thread Ben Hutchings
Commit e31b82136d1adc7a599b6e99d3321e5831841f5a ("cfg80211/mac80211: allow per-station GTKs") changed the signatures of these operations but did not update the staging drivers. Signed-off-by: Ben Hutchings --- Compile-tested only. This should be 2.6.37 material. Ben. drivers/staging/brcm80211

[PATCH 2/5] Staging: brcmfmac: Fix MAC header lookup on 64-bit architectures

2010-11-07 Thread Ben Hutchings
Fix direct use of sk_buff::mac_header which is an offset rather than a pointer on 64-bit architectures. Signed-off-by: Ben Hutchings --- Compile-tested only. This should be 2.6.37 material. Ben. drivers/staging/brcm80211/brcmfmac/dhd_linux.c |2 +- 1 files changed, 1 insertions(+), 1 dele

[PATCH 1/5] Staging: ath6kl: Fix pointer casts on 64-bit architectures

2010-11-07 Thread Ben Hutchings
Remove unnecessary cast of firmware base address to integer before adding an offset. Fix direct use of sk_buff::network_header which is an offset rather than a pointer on 64-bit architectures. Signed-off-by: Ben Hutchings --- Compile-tested only. This should be 2.6.37 material. Ben. drivers/

Hi

2010-11-07 Thread beth
Hi, I am soliciting on my brothers behalf a well known politician and a senator of the republic of Philippines who has been in detention since 2007. I will need your help to secure his funds abroad for investment with you through me. I will need your full cooperation to stand and sign a contr