18 Aug, 2014

1 commit

  • DBG_PRT uses are unnecessarily complex.

    Convert DBG_PRT msglevel to pr_.
    This changes the KERN_ type of several uses.
    It also enables dynamic_debug for the pr_debug conversions.

    This patch can be a prelude to converting these pr_
    uses to dev_ as appropriate.

    Other changes:

    Realign arguments of these conversions.
    Remove now unused static int msglevel declarations.
    Remove now unused DBG_PRT #define.

    Compile tested only.

    Signed-off-by: Joe Perches
    Signed-off-by: Greg Kroah-Hartman

    Joe Perches
     

23 Jul, 2014

1 commit

  • PortOffset was an unsigned long, but used as an pointer to io
    memory. Sometimes it was not properly cast before use, which caused
    many warning by sparse.

    By updating its type to void __iomem *, and reflecting the changes
    where it is needed, this removes most of those warnings.

    Signed-off-by: Guillaume Clement
    Signed-off-by: Greg Kroah-Hartman

    Guillaume Clement
     

16 May, 2014

2 commits

  • This patchs fixes tons of warnings such as:

    WARNING: braces {} are not necessary for single statement blocks
    #354: FILE: drivers/staging/vt6655/wmgr.c:354:
    + for (ii = 0; ii < WLAN_BSSID_LEN; ii++) {
    + pMgmt->abyDesireBSSID[ii] = 0xFF;
    + }

    Please note: this patch only fixes bracing issues (and there is still a
    lot to do); so if you run checkpatch it _will_ throw a lot of errors.
    Use --test-only=braces

    Signed-off-by: Guido Martínez
    Signed-off-by: Greg Kroah-Hartman

    Guido Martínez
     
  • Remove dead code in many places on this driver.

    Signed-off-by: Guido Martínez
    Signed-off-by: Greg Kroah-Hartman

    Guido Martínez
     

09 Mar, 2014

1 commit


11 Nov, 2013

1 commit


26 Mar, 2013

3 commits


19 Mar, 2013

1 commit


05 Sep, 2012

1 commit


03 Aug, 2010

3 commits


25 Jun, 2010

3 commits


23 Jun, 2010

1 commit


19 Jun, 2010

4 commits


12 May, 2010

1 commit


16 Sep, 2009

4 commits


20 Jun, 2009

1 commit

  • Add pristine upstream vt6655 driver sources to drivers/staging/vt6655. These
    files were literally copied from the driver directory in the upstream source
    archive, available here:

    http://www.viaarena.com/Driver/vt6655_linux_src_v1.19.12_x86.zip

    Signed-off-by: Forest Bond
    Signed-off-by: Greg Kroah-Hartman

    Forest Bond