Re: staging: comedi: USB devs not working / some comedi core reorganization

2014-01-02 Thread Dan Carpenter
On Fri, Dec 20, 2013 at 11:48:31PM +, Bernd Porr wrote: From 5971245d01f25890826fc05f7bab0d2b8d6bfd63 Mon Sep 17 00:00:00 2001 From: Bernd Porr m...@berndporr.me.uk Date: Fri, 20 Dec 2013 23:32:08 + Subject: [PATCH 1/1] Moving un-registering of the subdevices and the main comedi

Re: [PATCH 30/31] staging: r8188eu: Fix sparse warnings in core/rtw_br_ext.c

2014-01-02 Thread Dan Carpenter
A couple of these are real endian bugs, it's not just warnings. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 31/31] staging: r8188eu: Fix smatch error

2014-01-02 Thread Dan Carpenter
On Sun, Dec 22, 2013 at 05:37:02PM -0600, Larry Finger wrote: Smatch shows the following: CHECK drivers/staging/rtl8188eu/core/rtw_mlme_ext.c drivers/staging/rtl8188eu/core/rtw_mlme_ext.c:1401 OnAssocReq() error: buffer overflow 'pstapriv-sta_aid' 32 = 32 This is a false positive in

Re: [PATCH 24/31] staging: r8188eu: Additional cleanup of include/odm.h

2014-01-02 Thread Dan Carpenter
On Sun, Dec 22, 2013 at 05:36:55PM -0600, Larry Finger wrote: --- a/drivers/staging/rtl8188eu/include/odm_interface.h +++ b/drivers/staging/rtl8188eu/include/odm_interface.h @@ -51,7 +51,7 @@ ODM_REG(DIG,_pDM_Odm) #define _cat(_name, _ic_type, _func) \

Re: [PATCH 1/3] mfd: Add realtek USB card reader driver

2014-01-02 Thread Dan Carpenter
On Mon, Dec 23, 2013 at 05:52:05PM +0800, rogera...@realtek.com wrote: +static int rtsx_usb_seq_write_register(struct rtsx_ucr *ucr, + u16 addr, u16 len, u8 *data) +{ + u16 cmd_len = len + 12; + + if (data == NULL) + return -EINVAL; + + cmd_len =

Re: [PATCH] staging: usbip: add support for viewing imported devices

2014-01-02 Thread Dan Carpenter
-Werror=unused-parameter is stupid. Better to turn it off instead of ugly work arounds. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: staging: comedi: USB devs not working / some comedi core reorganization

2014-01-02 Thread Bernd Porr
Hi Dan, see my re-submission of these patches. I did that properly with the git email this time. Hope that's now all properly formatted. Thanks also for the link. Best, /Bernd Dan Carpenter wrote: On Fri, Dec 20, 2013 at 11:48:31PM +, Bernd Porr wrote: From

[PATCH, RFC 00/30] sleep_on removal

2014-01-02 Thread Arnd Bergmann
The functions sleep_on, sleep_on_timeout, interruptible_sleep_on and interruptible_sleep_on_timeout have been deprecated for as long as I can remember, and a number of people have contributed patches in the past to remove them from various drivers. This has recently popped up again and I decided

[PATCH, RFC 09/30] staging: serqt_usb2: don't use sleep_on

2014-01-02 Thread Arnd Bergmann
sleep_on and related functions are going away and should not be used in this driver any more. This removes the call to interruptible_sleep_on for a wait queue that is never woken up, and replaces an interruptible_sleep_on_timeout call with the equivalent wait_event_interruptible_timeout() to

[PATCH, RFC 10/30] staging: gdm72xx: fix interruptible_sleep_on race

2014-01-02 Thread Arnd Bergmann
interruptible_sleep_on is racy and going away. This replaces the use in the gdm72xx driver with the appropriate wait_event_interruptible_lock_irq. Signed-off-by: Arnd Bergmann a...@arndb.de Cc: Greg Kroah-Hartman gre...@linuxfoundation.org Cc: de...@driverdev.osuosl.org ---

[PATCH, RFC 11/30] staging: panel: fix interruptible_sleep_on race

2014-01-02 Thread Arnd Bergmann
interruptible_sleep_on is racy and going away. This replaces the one caller in the panel driver with the appropriate wait_event_interruptible variant. Signed-off-by: Arnd Bergmann a...@arndb.de Cc: de...@driverdev.osuosl.org Cc: Willy Tarreau wi...@meta-x.org Cc: Greg Kroah-Hartman

Re: [PATCH] Staging: comedi: replace printk() calls with dev_dbg() in pcmmio.c

2014-01-02 Thread Dan Carpenter
On Sat, Dec 28, 2013 at 03:13:52AM -0600, Chase Southwood wrote: From: Chase Southwood chase.southw...@yahoo.com We get this from your email. It's not needed unless you are forwarding a patch from someone else. This is a patch for pcmmio.c that changes several printk() calls to dev_dbg()

[patch] [media] staging: sn9c102: add a USB depend to the Kconfig

2014-01-02 Thread Dan Carpenter
This driver won't link without USB support. Reported-by: Jim Davis jim.ep...@gmail.com Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/drivers/staging/media/sn9c102/Kconfig b/drivers/staging/media/sn9c102/Kconfig index d8ae2354b626..3ab9c81173da 100644 ---

Re: [PATCH] Staging: tidspbridge: Use hashtable implementation

2014-01-02 Thread Dan Carpenter
Minor nits. Nothing major. On Wed, Dec 25, 2013 at 07:29:52PM +0200, Ivaylo DImitrov wrote: From: Ivaylo Dimitrov freemangor...@abv.bg Use upstream hashtable implementation instead of generic code Signed-off-by: Ivaylo Dimitrov freemangor...@abv.bg Send from the same email you are using

Re: [PATCH 10/11] Staging: vt6656: Combined nested conditions

2014-01-02 Thread Dan Carpenter
On Thu, Dec 26, 2013 at 07:55:39PM +0100, Sebastian Rachuj wrote: - if (pbyDesireSSID != NULL) { - if (((PWLAN_IE_SSID) pbyDesireSSID)-len != 0) - pSSID = (PWLAN_IE_SSID) pbyDesireSSID; - } + if ((pbyDesireSSID != NULL) + (((PWLAN_IE_SSID)

Re: [PATCH 7/7] vt6655: Fixed most of the checkpatch warnings in wmgr

2014-01-02 Thread Dan Carpenter
On Mon, Dec 30, 2013 at 03:52:37PM +0100, Michael Gunselmann wrote: wmgr.h: Fixed checkpatch errors. Four typedef warnings remain. line 85: This typedef increases understandability so this warning is not touched. line 196, 203 and 214:

Re: [PATCH v2] Staging: tidspbridge: Use hashtable implementation

2014-01-02 Thread Dan Carpenter
+ u32 val_size; + DECLARE_HASHTABLE(hash_table, GH_HASH_ORDER); + u32 (*hash)(void *); + bool (*match)(void *, void *); + void (*delete)(void *); I forgot to say, put the parameter name in the declaration. + u32 (*hash)(void *key); + bool (*match)(void *key,

Re: Trivial cleanups for drivers/hv/connection.c

2014-01-02 Thread Dan Carpenter
On Tue, Dec 31, 2013 at 10:52:37PM +0100, Pavel Machek wrote: __u32 is only useful for kernel-user interface, u32 should be enough for kernel. Formatting was very confusing around __get_free_pages(). The subject should say: [PATCH] hv: Trivial cleanups for drivers/hv/connection.c regards,

[PATCH] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Tim Jester-Pfadt
Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/core/rtw_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_io.c b/drivers/staging/rtl8188eu/core/rtw_io.c

[PATCH] DAS1800: Fixed typeo.

2014-01-02 Thread Joe Borg
Fixed foo * bar should be foo *bar. Fixed by Joe Borg r...@josephb.org --- drivers/staging/comedi/drivers/das1800.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/das1800.c b/drivers/staging/comedi/drivers/das1800.c index 1880038..8fb87df

[PATCH] DAS6042: Fixing typeo.

2014-01-02 Thread Joe Borg
Fixing foo * bar should be foo *bar. Fixed by Joe Borg r...@josephb.org --- drivers/staging/comedi/drivers/das6402.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/das6402.c b/drivers/staging/comedi/drivers/das6402.c index fb25cb8..37ae356

Re: [PATCH] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Larry Finger
On 01/02/2014 11:03 AM, Tim Jester-Pfadt wrote: Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/core/rtw_io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

RE: [PATCH][Resend] Staging: comedi: replace printk() calls with dev_dbg() in pcmmio.c

2014-01-02 Thread Hartley Sweeten
On Wednesday, January 01, 2014 6:55 PM, Chase Southwood wrote: This is a patch for pcmmio.c that changes several printk() calls to dev_dbg() or dev_err() to fix checkpatch.pl warnings. Patched from 3.13-rc6. Signed-off-by: Chase Southwood chase.southw...@yahoo.com ---

RE: [PATCH] comedi: Humusoft MF634 and MF624 DAQ cards driver

2014-01-02 Thread Hartley Sweeten
On Monday, December 30, 2013 6:37 PM, Rostislav Lisovy wrote: create mode 100644 drivers/staging/comedi/drivers/mf6x4.c Hello Rostislav, As pointed out by Dan Carpenter, you need to add a change log and Signed-off-by lines to this patch. Overall this looks pretty good. Comments below. diff

[PATCH v2] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Tim Jester-Pfadt
Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/core/rtw_io.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_io.c

[PATCH RFC 01/46] imx-drm: imx-drm-core: use the crtc drm device for vblank

2014-01-02 Thread Russell King
There are a couple of ways to get at the drm_device for the vblank operations. One of them is via the private imxdrm structure, the other is via the DRM crtc structure, which also stores a pointer. Use the DRM method instead of our own method. Signed-off-by: Russell King

[PATCH RFC 00/46] Preview of imx-drm cleanup series

2014-01-02 Thread Russell King - ARM Linux
Here is my large patch series which cleans up imx-drm, and gets it ready to move out of drivers/staging. This is a preview only. One of these patches introduces a generic helper in drivers/base which can be used by any subsystem to assemble a sub-devices together and complete the probe of a

[PATCH RFC 32/46] imx-drm: use supplied drm_device where possible

2014-01-02 Thread Russell King
The component helper provides us the drm_device which is being registered. Rather than having to reference a global in imx-drm-core, use this to get the imxdrm device, and also use it to register the CRTC against. This means we never have CRTCs/encoders/connectors without the drivers private

[PATCH RFC 09/46] imx-drm: update and fix imx6 DT descriptions for v3 HDMI driver

2014-01-02 Thread Russell King
Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- arch/arm/boot/dts/imx6dl.dtsi |3 ++- arch/arm/boot/dts/imx6q.dtsi |1 + arch/arm/boot/dts/imx6qdl.dtsi |1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/imx6dl.dtsi

[PATCH RFC 10/46] imx-drm: imx-hdmi: fix PLL lock wait

2014-01-02 Thread Russell King
Enabling the debug for PLL lock shows that this times out almost every time. Having such an event at debug level is probably a bug in itself because it hides this fact. Waiting 5ms seems to allow it to lock. Also, adjust the loop so that we check for success before checking whether we've timed

[PATCH RFC 08/46] imx-drm: add imx6 DT configuration for HDMI

2014-01-02 Thread Russell King
Extracted from another patch by Fabio Estevam, this adds the DT configuration for HDMI output on the IMX6 SoCs Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- arch/arm/boot/dts/imx6dl.dtsi |4 arch/arm/boot/dts/imx6q.dtsi |4 arch/arm/boot/dts/imx6qdl.dtsi | 10

[PATCH RFC 34/46] imx-drm: imx-drm-core: provide common connector and encoder cleanup functions

2014-01-02 Thread Russell King
Provide two helper functions to assist with cleaning up imx-drm connectors and encoders. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 13 + drivers/staging/imx-drm/imx-drm.h |2 ++ 2 files changed, 15 insertions(+), 0

[PATCH RFC 31/46] imx-drm: remove imx-fb.c

2014-01-02 Thread Russell King
imx-fb.c doesn't need to be separate from imx-drm-core.c - all it is doing is setting up the minimum and maximum sizes of the scanout buffers, and setting up the mode_config function pointers. Move the contents into imx-drm-core.c and kill this file. Signed-off-by: Russell King

[PATCH RFC 02/46] imx-drm: imx-drm-core: avoid going the long route round for drm_device

2014-01-02 Thread Russell King
We have the drm_device available, so rather than storing it and then using the stored version, us the one we already have available to us. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 16 1 files changed, 8 insertions(+),

[PATCH RFC 30/46] imx-drm: remove separate imx-fbdev

2014-01-02 Thread Russell King
Now that we know when the components of the imx-drm subsystem will be initialised, we can move the fbdev helper initialisation and teardown into imx-drm-core. This gives us the required ordering that DRM wants in both driver load and unload methods. We can also stop exporting the

[PATCH RFC 03/46] imx-drm: imx-drm-core: merge imx_drm_crtc_register() into imx_drm_add_crtc()

2014-01-02 Thread Russell King
There's no reason for this to be a separate function; merge the two together. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 33 --- 1 files changed, 9 insertions(+), 24 deletions(-) diff --git

[PATCH RFC 04/46] imx-drm: ipu-v3: more inteligent DI clock selection

2014-01-02 Thread Russell King
The DI clock selection was very rudimentary: it would statically use either the IPU internal clock or the DI external clock depending on which encoder was being used. In the case of HDMI, it would always use the IPU clock. Moreover, using the IPU clock resulted in fractional divisors, which are

[PATCH RFC 06/46] imx-drm: ipu-v3: more clocking fixes

2014-01-02 Thread Russell King
There's no point in using the clk API for this; we end up having to violate the layering this provides. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/ipu-v3/ipu-di.c | 328 ++- 1 files changed, 105 insertions(+), 223 deletions(-)

[PATCH RFC 35/46] imx-drm: parallel-display,imx-tve,imx-ldb: initialise drm components directly

2014-01-02 Thread Russell King
Now that our bind function is only ever called during the main DRM driver -load callback, we don't need to have the imx_drm_connector or imx_drm_encoder abstractions anymore. So let's get rid of it, and move the DRM connector and encoder setup into the connector support files. Signed-off-by:

[PATCH RFC 12/46] imx-drm: imx-hdmi: fix wrong comment

2014-01-02 Thread Russell King
The vsync active edge delay is in lines, not pixel clocks. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c

[PATCH RFC 40/46] imx-drm: imx-drm-core: move allocation of imxdrm device to driver load function

2014-01-02 Thread Russell King
It is now no longer necessary to keep this structure around; we can allocate it upon DRM driver load and destroy it thereafter without affecting the other components now. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 47

[PATCH RFC 20/46] imx-drm: imx-hdmi: fix CTS/N setup at init time

2014-01-02 Thread Russell King
Many of the variables for the audio clock regenerator (CTS/N) were not initialised in any way. The pixel rate which was being used also wasn't being adjusted at all when the display mode is modified. Get rid of the seaprate 'pixel_clk_rate', and use the stored pixel clock rate instead. Pass

[PATCH RFC 16/46] imx-drm: imx-hdmi: convert HDMI clock settings to tabular form

2014-01-02 Thread Russell King
Rather than having large if() and switch() statements, provide a table to look up the register settings for various clock rates. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c | 250 ++-- 1 files changed, 95

[PATCH RFC 36/46] imx-drm: imx-hdmi: initialise drm components directly

2014-01-02 Thread Russell King
Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c | 56 +-- 1 files changed, 15 insertions(+), 41 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index

[PATCH RFC 13/46] imx-drm: imx-hdmi: get rid of pointless fb_reg

2014-01-02 Thread Russell King
fb_reg provides no real benefit to the driver: imx_hdmi_fb_registered() will never be called multiple times. Let's get rid of this. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-)

[PATCH RFC 39/46] imx-drm: imx-drm-core: kill off mutex

2014-01-02 Thread Russell King
This mutex doesn't protect anything anymore; get rid of it. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 26 +++--- 1 files changed, 3 insertions(+), 23 deletions(-) diff --git a/drivers/staging/imx-drm/imx-drm-core.c

[PATCH RFC 41/46] imx-drm: imx-drm-core: various cleanups

2014-01-02 Thread Russell King
Various cleanups are possible after the previous round of changes; these have no real functional bearing other than tidying up the code. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-drm-core.c | 47 +++

[PATCH RFC 19/46] imx-drm: imx-hdmi: clean up setting of vp_conf

2014-01-02 Thread Russell King
Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c | 49 --- 1 files changed, 22 insertions(+), 27 deletions(-) diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c index

[PATCH RFC 43/46] imx-drm: imx-hdmi: add hotplug support to HDMI component

2014-01-02 Thread Russell King
Add hotplug support. We have to make the interrupt handler threaded so we can call drm_helper_hpd_irq_event(). Keeping in mind that we will want to share the interrupt with other HDMI interface drivers (eg, audio and CEC) put the groundwork in now for that, rather than just using IRQF_ONESHOT.

[PATCH RFC 29/46] imx-drm: delay publishing sysfs connector entries

2014-01-02 Thread Russell King
Delay publishing sysfs connector entries until all components have initialised. This reduces the probability of generating false hotplug events when we're uncertain whether the driver can fully initialise. This also pulls that code out of the individual imx-drm connector drivers. Signed-off-by:

[PATCH RFC 17/46] imx-drm: imx-hdmi: clean up setting CSC registers

2014-01-02 Thread Russell King
Rather than manually writing each register sequentially, we can use a loop to reduce the amount of code. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c | 40 --- 1 files changed, 14 insertions(+), 26 deletions(-)

[PATCH RFC 18/46] imx-drm: imx-hdmi: provide register modification function

2014-01-02 Thread Russell King
There are a load of read-modify-write patterns to change bitfields in various registers in this driver; provide a helper to perform this manipulation. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c | 188 +--- 1

[PATCH RFC 22/46] imx-drm: imx-drm-core: sanitise imx_drm_encoder_get_mux_id()

2014-01-02 Thread Russell King
Address the following issues: - imx_drm_encoder_get_mux_id() searches the CRTC list for the matching CRTC, and returns the position within this list as the MUX programming value for encoders. This is sub-optimal for two reasons: 1. It relies upon the CRTC list not changing during the

[PATCH RFC 27/46] imx-drm: convert to componentised device support

2014-01-02 Thread Russell King
Use the componentised device support for imx-drm. This requires all the sub-components and the master device to register with the component device support. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- arch/arm/boot/dts/imx51-babbage.dts| 10 ++-

[PATCH RFC 26/46] drivers/base: provide an infrastructure for componentised subsystems

2014-01-02 Thread Russell King
Subsystems such as ALSA, DRM and others require a single card-level device structure to represent a subsystem. However, firmware tends to describe the individual devices and the connections between them. Therefore, we need a way to gather up the individual component devices together, and

[PATCH RFC 38/46] imx-drm: imx-drm-core: get rid of drm_mode_group_init_legacy_group()

2014-01-02 Thread Russell King
Since we're now operating like a conventional DRM driver, doing all the initialisation within the driver's -load callback, we don't need to mess around with the mode groups - we can rely on the one in the DRM platform code. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk ---

[PATCH RFC 14/46] imx-drm: imx-hdmi: get rid of clk manipulations in imx_hdmi_fb_registered()

2014-01-02 Thread Russell King
The clock manipulations do nothing for us: the clock is already enabled by the only caller (imx_hdmi_platform_probe()). Get rid of these and simplify the code. Signed-off-by: Russell King rmk+ker...@arm.linux.org.uk --- drivers/staging/imx-drm/imx-hdmi.c |8 1 files changed, 0

[PATCH RFC 45/46] imx-drm: dw-hdmi-audio: parse ELD from HDMI driver

2014-01-02 Thread Russell King
Parse the ELD (EDID like data) stored from the HDMI driver to restrict the sample rates and channels which are available to ALSA. This causes the ALSA device to reflect the capabilities of the overall audio path, not just what is supported at the HDMI source interface level. Signed-off-by:

Re: [PATCH v2] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Larry Finger
On 01/02/2014 02:46 PM, Tim Jester-Pfadt wrote: Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/core/rtw_io.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git

[RFC PATCHv3 05/11] staging: lustre: Use is_vmalloc_addr

2014-01-02 Thread Laura Abbott
Instead of manually checking the bounds of VMALLOC_START and VMALLOC_END, just use is_vmalloc_addr. That's what the function was designed for. Signed-off-by: Laura Abbott lau...@codeaurora.org --- .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |3 +-- 1 files changed, 1 insertions(+), 2

BUSINESS PROPOSAL

2014-01-02 Thread Mrs Teresa Au
-- Although you might be nervous about my e-mail as we have not met before. My name is Mrs Teresa Au,HSBC Hong Kong, head of corporate sustainability Asia pacific region. A sum of(USD$23,200,000.00) (Twenty three million, two Hundred Thousand dollars) Million , It is absolutely risk free,was

Re: [PATCH 31/31] staging: r8188eu: Fix smatch error

2014-01-02 Thread Larry Finger
On 01/02/2014 02:44 AM, Dan Carpenter wrote: On Sun, Dec 22, 2013 at 05:37:02PM -0600, Larry Finger wrote: Smatch shows the following: CHECK drivers/staging/rtl8188eu/core/rtw_mlme_ext.c drivers/staging/rtl8188eu/core/rtw_mlme_ext.c:1401 OnAssocReq() error: buffer overflow

[PATCH v3] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Tim Jester-Pfadt
Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/core/rtw_io.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8188eu/core/rtw_io.c

[PATCH] Staging: rtl8188eu: Fixed spaces before tabs and before close parentheses

2014-01-02 Thread Tim Jester-Pfadt
Fixed all space before tab warnings and space before close parenthesis errors on rtl8188e_spec.h Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- drivers/staging/rtl8188eu/include/rtl8188e_spec.h | 70 +++ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git

Re: [PATCH v3] Staging: rtl8188eu: Fixed coding style issues

2014-01-02 Thread Dan Carpenter
On Fri, Jan 03, 2014 at 12:22:59AM +0100, Tim Jester-Pfadt wrote: Fixed indentation coding style issues on rtw_io.c Signed-off-by: Tim Jester-Pfadt t...@gmx.de --- Next time, if you do a v2 patch please put a note here under the --- line what changed between the previous one and this one. 2: