Go to file
Simran Singhal ecc11b42c7 staging: rtl8723bs: hal: Compress return logic
Simplify function returns by merging assignment and return into
one command line.
Found with Coccinelle

@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Signed-off-by: Simran Singhal <singhalsimran0@gmail.com>
Link: https://lore.kernel.org/r/20200325214312.GA1936@simran-Inspiron-5558
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2020-03-26 08:37:38 +01:00
arch Merge 5.6-rc7 into staging-next 2020-03-23 08:01:20 +01:00
block
certs
crypto
Documentation staging: most: Documentation: move ABI description files out of staging area 2020-03-24 13:42:44 +01:00
drivers staging: rtl8723bs: hal: Compress return logic 2020-03-26 08:37:38 +01:00
fs for-5.6-rc6-tag 2020-03-22 11:35:33 -07:00
include staging: most: move core files out of the staging area 2020-03-24 13:42:44 +01:00
init
ipc
kernel x86/mm: split vmalloc_sync_all() 2020-03-21 18:56:06 -07:00
lib
LICENSES
mm x86/mm: split vmalloc_sync_all() 2020-03-21 18:56:06 -07:00
net io_uring-5.6-20200320 2020-03-21 11:54:47 -07:00
samples
scripts
security
sound
tools tools/power turbostat: update version 2020-03-21 00:48:02 -04:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS Merge 5.6-rc7 into staging-next 2020-03-23 08:01:20 +01:00
Makefile Linux 5.6-rc7 2020-03-22 18:31:56 -07:00
README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.