No description
Find a file
Uwe Kleine-König 7462e46054 fbdev: omapfb/opa362: Don't put .remove() in .exit.text and drop suppress_bind_attrs
On today's platforms the memory savings of putting the remove function
in .exit isn't that relevant any more. It only matters for built-in
drivers and typically saves a few 100k.

The downside is that the driver cannot be unbound at runtime which is
ancient and also slightly complicates testing. Also it requires to mark
the driver struct with __refdata which is needed to suppress a (W=1)
modpost warning:

	WARNING: modpost: drivers/video/fbdev/omap2/omapfb/displays/encoder-tfp410: section mismatch in reference: tfp410_driver+0x4 (section: .data) -> tfp410_remove (section: .exit.text)

To simplify matters, move the remove callback to .text and drop
.suppress_bind_attrs = true.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Helge Deller <deller@gmx.de>
2023-11-10 07:34:18 +01:00
arch media updates for v6.7-rc1 2023-11-06 15:06:06 -08:00
block
certs
crypto
Documentation media updates for v6.7-rc1 2023-11-06 15:06:06 -08:00
drivers fbdev: omapfb/opa362: Don't put .remove() in .exit.text and drop suppress_bind_attrs 2023-11-10 07:34:18 +01:00
fs This pull request contains updates for UBI and UBIFS 2023-11-05 08:28:32 -10:00
include media updates for v6.7-rc1 2023-11-06 15:06:06 -08:00
init
io_uring
ipc
kernel
lib cxl for v6.7 2023-11-04 16:20:36 -10:00
LICENSES
mm
net Bunch of small fixes: 2023-11-04 09:20:04 -10:00
rust
samples
scripts
security
sound
tools cxl for v6.7 2023-11-04 16:20:36 -10:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS media updates for v6.7-rc1 2023-11-06 15:06:06 -08: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 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.