1
0
Fork 0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-01-24 01:09:38 -05:00
No description
Find a file
Greg Kroah-Hartman f8fb469147 driver core: make driver_find_device() take a const *
The function driver_find_device() does not modify the struct
device_driver structure directly, so it is safe to be marked as a
constant pointer type.  As that is fixed up, also change the function
signature on the inline functions that call this, which are:
	driver_find_device_by_name()
	driver_find_device_by_of_node()
	driver_find_device_by_devt()
	driver_find_next_device()
	driver_find_device_by_acpi_dev()

Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Link: https://lore.kernel.org/r/2024070849-broken-front-9eb5@gregkh
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-07-10 09:41:57 +02:00
arch driver core: have match() callback in struct bus_type take a const * 2024-07-03 15:16:54 +02:00
block
certs
crypto
Documentation
drivers driver core: make driver_find_device() take a const * 2024-07-10 09:41:57 +02:00
fs
include driver core: make driver_find_device() take a const * 2024-07-10 09:41:57 +02:00
init
io_uring
ipc
kernel
lib
LICENSES
mm
net driver core: have match() callback in struct bus_type take a const * 2024-07-03 15:16:54 +02:00
rust firmware_loader: fix soundness issue in request_internal 2024-07-10 09:35:09 +02:00
samples
scripts
security
sound driver core: have match() callback in struct bus_type take a const * 2024-07-03 15:16:54 +02:00
tools
usr
virt
.clang-format
.cocciconfig
.editorconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS MAINTAINERS: add Rust device abstractions to DRIVER CORE 2024-06-20 16:14:58 +02:00
Makefile
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 reStructuredText 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.