Skip to content
Permalink
Martin-Kaiser/…
Switch branches/tags

Commits on Apr 17, 2021

  1. staging: rtl8188eu: remove unused function parameters

    The Enable and Linked parameters of _BeaconFunctionEnable are not used.
    Remove them.
    
    Signed-off-by: Martin Kaiser <martin@kaiser.cx>
    martin-kaiser authored and intel-lab-lkp committed Apr 17, 2021
  2. staging: rtl8188eu: cmdThread is a task_struct

    cmdThread is the return value of kthread_run, i.e. a struct task_struct.
    
    Signed-off-by: Martin Kaiser <martin@kaiser.cx>
    martin-kaiser authored and intel-lab-lkp committed Apr 17, 2021
  3. staging: rtl8188eu: remove constant variable and dead code

    g_wifi_on is always true. Remove the variable and the code that would
    be run only if g_wifi_on was false.
    
    Signed-off-by: Martin Kaiser <martin@kaiser.cx>
    martin-kaiser authored and intel-lab-lkp committed Apr 17, 2021
  4. staging: rtl8188eu: change bLeisurePs' type to bool

    bLeisurePs is used as a boolean variable. Change its type from
    u8 to bool.
    
    Signed-off-by: Martin Kaiser <martin@kaiser.cx>
    martin-kaiser authored and intel-lab-lkp committed Apr 17, 2021

Commits on Apr 15, 2021

  1. staging: rtl8723bs: Remove led_blink_hdl() and everything related

    Removed useless led_blink_hdl() prototype and definition.
    Removed struct LedBlink_param. Removed LedBlink entries in
    rtw_cmd_callback[] and in wlancmds[]. Everything related to LedBlink is
    not anymore needed. Index of slots changed in arrays comments to reflect
    current positions.
    
    Reported-by: Julia Lawall <julia.lawall@inria.fr>
    Reported-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Suggested-by: Matthew Wilcox <willy@infradead.org>
    Suggested-by: Dan Carpenter <dan.carpenter@oracle.com>
    Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
    Link: https://lore.kernel.org/r/20210415071731.25725-1-fmdefrancesco@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    xp4ns3 authored and gregkh committed Apr 15, 2021
  2. staging: comedi: move out of staging directory

    The comedi code came into the kernel back in 2008, but traces its
    lifetime to much much earlier.  It's been polished and buffed and
    there's really nothing preventing it from being part of the "real"
    portion of the kernel.
    
    So move it to drivers/comedi/ as it belongs there.
    
    Many thanks to the hundreds of developers who did the work to make this
    happen.
    
    Cc: Ian Abbott <abbotti@mev.co.uk>
    Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
    Link: https://lore.kernel.org/r/YHauop4u3sP6lz8j@kroah.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Apr 15, 2021
  3. staging: rtl8723bs: remove sdio_drv_priv structure

    The sdio_drv_priv structure is a small wrapper around sdio_driver in
    linux/mmc/sdio_func.h with an added drv_registered integer.
    
    drv_registered is never used anywhere in the driver and only assigned to
    during the sdio registering and unregistering process. We can safely
    remove sdio_drv_priv and use the sdio_driver structure directly.
    
    Signed-off-by: Bryan Brattlof <hello@bryanbrattlof.com>
    Link: https://lore.kernel.org/r/20210414173751.317762-1-hello@bryanbrattlof.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    bryanbrattlof authored and gregkh committed Apr 15, 2021

Commits on Apr 14, 2021

  1. staging: rtl8723bs: remove unused argument in function

    removed unused 'void *sel' argument in rtw_odm_dbg_comp_msg()
    function, after DBG_871X_SEL_NL replacement.
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/1bd83b936584432fdb09406f26ed8a8b66cd4c8d.1618401896.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  2. staging: rtl8723bs: remove DBG_871X_SEL_NL macro declaration

    remove DBG_871X_SEL_NL obsolete macro declaration.
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/8839231b53881c8bf1f8a4d70953ec8acaa2fe95.1618401896.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  3. staging: rtl8723bs: replace DBG_871X_SEL_NL with netdev_dbg()

    replace DGB_871X_SEL_NL macro with netdev_dbg().
    
    DBG_871X_SEL_NL macro expands to a raw prink call or a
    seq_printf if selected stream _is not_ a local
    debug symbol set to null.
    This second scenario never occurs so replace
    all macro usages with netdev_dbg().
    
    This is done with the following coccinelle script:
    
    @@
    expression sel;
    expression list args;
    identifier padapter;
    identifier func;
    @@
    
    func(..., struct adapter *padapter, ...) {
    	<...
    -	DBG_871X_SEL_NL(sel, args);
    +	netdev_dbg(padapter->pnetdev, args);
    	...>
    }
    
    fix by hand one coccinelle output newline issue
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/9d4597097d75a1900c65e4a15077eb0c8bce1c9b.1618401896.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  4. staging: rtl8723bs: fix indentation issue introduced by long line split

    fix indentation of last line in if condition.
    
    Fixes: af6afdb (staging: rtl8723bs: split long lines)
    Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/20210414081739.2990-1-fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  5. staging: rtl8192e: removed multiple blank lines

    Removed multiple blank lines to make code better and neater.
    Reported by checkpatch.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/2bfe551f152a611cc49a71a4984f41ef7ee69df5.1618380932.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 14, 2021
  6. staging: rtl8192e: remove unnecessary blank line after close brace

    Removed an extra blank line after close brace '{' as it was not
    necessary.
    Reported by checkpatch
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/40f72a84750f402c342b4685e0a2f15d27875c9a.1618380932.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 14, 2021
  7. staging: rtl8192e: remove unnecessary blank line before brace

    Removed an extra blank line before close brace as it was not necessary.
    Reported by checkpatch.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/cad6a7885f30dcfabaf1ccab1fd0644416fea194.1618380932.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 14, 2021
  8. staging: rtl8192e: add spaces around binary operators

    Added spaces around binary operators like '+', '*', '|', '-', '&',
    to improve readability and to meet linux kernel coding style.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/28cbc4825fdfacf5d5ea8bb688a8bd6a1c65f059.1618380932.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 14, 2021
  9. staging: rtl8723bs: hal: Remove four set but not used variables

    Removed four variables that were set but not used.
    
    Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
    Link: https://lore.kernel.org/r/20210414061346.11423-1-fmdefrancesco@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    xp4ns3 authored and gregkh committed Apr 14, 2021
  10. staging: rtl8723bs: remove two unused functions

    remove dump_drv_version() and dump_log_level() function
    definitions and prototypes. Those functions are unused,
    and add unnecessary wrap level to log calls.
    
    They wrap DBG_871X_SEL_NL which will be replaced by
    netdev_dbg() with coccinelle script application.
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/2e8dd88c053735daed95701140b2f03b4cfe2a2e.1618325614.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  11. staging: rtl8723bs: remove unnecessary dump_drv_version() usage

    remove unnecessary dump_drv_version() usage.
    
    This prepares dump_drv_version() for removal, before
    coccinelle script application.
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/9ce6559cac69eaebfdb07206921d14e99d2b1967.1618325614.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  12. staging: rtl8723bs: replace dump_drv_version() usage with netdev_dbg()

    replace dump_drv_version() usage with netdev_dbg().
    
    There's no need to further wrap a netdev_dbg() call
    for such a low number of occurrences.
    
    The string printed is the same contained in DBG_871X_SEL_NL macro
    called inside dump_drv_version().
    
    This is just preparation before bulk DBG_871X_SEL_NL macro
    replacement by coccinelle, as the semantic patch that will be
    used just replaces, doesn't remove.
    
    Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
    Link: https://lore.kernel.org/r/a4df375dba6c004a22cf197ff8d498d0e4f3b52e.1618325614.git.fabioaiuto83@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Fabio Aiuto authored and gregkh committed Apr 14, 2021
  13. staging: rtl8723bs: core: Remove unused but set variable

    Removed "ledBlink_param" because it was set to the value of "pbuf" but was
    never reused. This set was made by direct assignment (no helper had been
    called), therefore it had no side effect to the location pointed by "pbuf".
    
    Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
    Link: https://lore.kernel.org/r/20210413150517.12533-1-fmdefrancesco@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    xp4ns3 authored and gregkh committed Apr 14, 2021
  14. staging: rtl8188eu: Move channel_table away from rtw_mlme_ext.h

    Moved "static const struct channel_table[]" from include/rtw_mlme_ext.h
    to core/rtw_ioctl_set.c because the latter is the only file that uses
    that array of struct(s) in the whole driver. "make rtl8188eu/ W=1" output
    several warnings about "'channel_table' defined but not used
    [-Wunused-const-variable=]".
    
    Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
    Link: https://lore.kernel.org/r/20210413102033.24781-1-fmdefrancesco@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    xp4ns3 authored and gregkh committed Apr 14, 2021
  15. staging: comedi: adv_pci_dio: remove whitespace

    Fixed checkpatch.pl warning:
    
    CHECK: Blank lines aren't necessary before a close brace '}'
    +
    +               }
    
    Signed-off-by: Mikko Talikka <mikko.talikka@live.com>
    Link: https://lore.kernel.org/r/AM0PR01MB42597C4CAA1B9E51D4AE3D5E974F9@AM0PR01MB4259.eurprd01.prod.exchangelabs.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    moshimarlo authored and gregkh committed Apr 14, 2021

Commits on Apr 13, 2021

  1. staging: fieldbus: simplify devm_anybuss_host_common_probe

    Use devm_add_action_or_reset() instead of devres_alloc() and
    devres_add(), which works the same. This will simplify the
    code. There is no functional changes.
    
    Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
    Link: https://lore.kernel.org/r/1618275183-56792-1-git-send-email-tiantao6@hisilicon.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Tian Tao authored and gregkh committed Apr 13, 2021
  2. staging: rtl8192e: remove unnecessary ftrace-like logging

    Removed unncessary ftrace-like logging by simply deleting that statement
    as we have other modes of logging like ftrace.
    Reported by checkpatch.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/460ba9cdd256bf1064c4e3a694caa046171cb60e.1618283232.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 13, 2021
  3. staging: rtl8723bs: remove unnecessary adapter

    The if2 adapter is defined in rtw_dvr_init() and in the dvobj_priv
    structure but never used anywhere in the driver. This will remove all
    definitions of if2
    
    Signed-off-by: Bryan Brattlof <hello@bryanbrattlof.com>
    Link: https://lore.kernel.org/r/20210412172147.43509-1-hello@bryanbrattlof.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    bryanbrattlof authored and gregkh committed Apr 13, 2021
  4. staging: rtl8723bs: hal: Correct indentation

    Correct random indentation to improve readability. This problem
    was observed when working on other checkpatch reports in the
    file Hal8723BReg.h
    
    Signed-off-by: Beatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
    Link: https://lore.kernel.org/r/68e91c54a3be0b57607101fa8b284c00bb7dff1a.1618243073.git.martinsdecarvalhobeatriz@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    BeatrizCarvalho authored and gregkh committed Apr 13, 2021
  5. staging: rtl8723bs: hal: Remove extra blank line

    Remove multiple blank lines to conform Linux kernel coding style.
    Reported by checkpatch in file Hal8723BReg.h
    
    Signed-off-by: Beatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
    Link: https://lore.kernel.org/r/7f48b48d92b54c1f5db29f0d23c8c1c666236c43.1618243073.git.martinsdecarvalhobeatriz@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    BeatrizCarvalho authored and gregkh committed Apr 13, 2021
  6. staging: rtl8723bs: hal: remove space before tabs

    Remove unnecessary space before tabs to conform with Linux kernel
    coding style.
    Reported by checkpatch in file Hal8723BReg.h
    
    Signed-off-by: Beatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
    Link: https://lore.kernel.org/r/9694aafb614bdcbb15fdea614502c1b31a534871.1618243073.git.martinsdecarvalhobeatriz@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    BeatrizCarvalho authored and gregkh committed Apr 13, 2021
  7. staging: vc04_services: TODO: rectify spelling mistake

    Corrected the misspelled word.
    Reported by checkpatch.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/967c328610909bc010b0bb82a1f89b71a57fa7a3.1618223171.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 13, 2021
  8. staging: vc04_services: TODO: remove trailing whitespace

    Removed trailing whitespace to adhere to linux kernel coding style.
    Reported by checkpatch.
    
    Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
    Link: https://lore.kernel.org/r/5a54a06bae846f1f037165c0c7ba7ffe5a55a4a8.1618223171.git.mitaliborkar810@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    M810-B authored and gregkh committed Apr 13, 2021

Commits on Apr 12, 2021

  1. staging: vchiq_core: split exit conditions

    Some exit conditions are rather complex. So better split them up.
    
    Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
    Link: https://lore.kernel.org/r/1618164700-21150-11-git-send-email-stefan.wahren@i2se.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    lategoodbye authored and gregkh committed Apr 12, 2021
  2. staging: vchiq_core: fix if alignments

    This fixes the alignment of some if statements.
    
    Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
    Link: https://lore.kernel.org/r/1618164700-21150-10-git-send-email-stefan.wahren@i2se.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    lategoodbye authored and gregkh committed Apr 12, 2021
  3. staging: vchiq_core: introduce SLOT_QUEUE_INDEX_FROM_POS_MASKED

    Define a macro which already masked the result of SLOT_QUEUE_INDEX_FROM_POS.
    
    Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
    Link: https://lore.kernel.org/r/1618164700-21150-9-git-send-email-stefan.wahren@i2se.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    lategoodbye authored and gregkh committed Apr 12, 2021
  4. staging: vchiq_core: use BITSET_WORD macro

    Use this macro to make the index retrieval less opaque.
    
    Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
    Link: https://lore.kernel.org/r/1618164700-21150-8-git-send-email-stefan.wahren@i2se.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    lategoodbye authored and gregkh committed Apr 12, 2021
  5. staging: vchiq_core: improve readability of request_poll

    Storing the index for poll services in a local var will increase the
    readability of the second loop. Also we get the rid off the checkpatch
    issue about the line ending with a square bracket.
    
    Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
    Link: https://lore.kernel.org/r/1618164700-21150-7-git-send-email-stefan.wahren@i2se.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    lategoodbye authored and gregkh committed Apr 12, 2021
Older