No description
Find a file
Jakub Kicinski 0c7ab953d1 wifi: plfxlc: remove redundant NULL-check for GCC 12
GCC is upset that we check the return value of plfxlc_usb_dev()
even tho it can't be NULL:

drivers/net/wireless/purelifi/plfxlc/usb.c: In function ‘resume’:
drivers/net/wireless/purelifi/plfxlc/usb.c:840:20: warning: the comparison will always evaluate as ‘true’ for the address of ‘dev’ will never be NULL [-Waddress]
  840 |         if (!pl || !plfxlc_usb_dev(pl))
      |                    ^

plfxlc_usb_dev() returns an address of one of the members of pl,
so it's safe to drop these checks.

Acked-by: Kalle Valo <kvalo@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2022-05-22 17:23:05 -07:00
arch arm64: dts: mediatek: mt7986: introduce ethernet nodes 2022-05-22 22:24:32 +01:00
block block/mq-deadline: Set the fifo_time member also if inserting at head 2022-05-13 17:02:46 -06:00
certs
crypto
Documentation dt-bindings: net: toshiba,visconti-dwmac: Update the common clock properties 2022-05-22 23:08:18 +01:00
drivers wifi: plfxlc: remove redundant NULL-check for GCC 12 2022-05-22 17:23:05 -07:00
fs afs: Adjust ACK interpretation to try and cope with NAT 2022-05-22 21:03:02 +01:00
include net: wrap the wireless pointers in struct net_device in an ifdef 2022-05-22 21:51:54 +01:00
init
ipc
kernel Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2022-05-19 11:23:59 -07:00
lib Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2022-05-19 11:23:59 -07:00
LICENSES
mm hotfixes for 5.18-rc7 2022-05-13 10:22:37 -07:00
net net: wrap the wireless pointers in struct net_device in an ifdef 2022-05-22 21:51:54 +01:00
samples Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2022-05-19 11:23:59 -07:00
scripts
security selinux: fix bad cleanup on error in hashtab_duplicate() 2022-05-17 18:34:35 -04:00
sound ALSA: usb-audio: Restore Rane SL-1 quirk 2022-05-16 12:41:13 +02:00
tools selftests: ocelot: tc_flower_chains: reorder interfaces 2022-05-22 22:14:13 +01:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap hotfixes for 5.18-rc7 2022-05-13 10:22:37 -07:00
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS can: can-dev: remove obsolete CAN LED support 2022-05-19 22:15:51 +02:00
Makefile Linux 5.18-rc7 2022-05-15 18:08:58 -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.