CVS log for src/sys/dev/acpi/acpi_dev.c
Up to [cvs.NetBSD.org] / src / sys / dev / acpi
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Nov 12 21:49:11 2024 UTC (2 months ago) by riastradh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +6 -7
lines
acpi(4): KNF
- Nix trailing whitespace.
- Fix operator spacing.
- No need to cast AcpiOsMapMemory result.
No functional change intended.
Followup commit for PR 58817.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Tue Nov 12 13:24:01 2024 UTC (2 months ago) by martin
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +52 -2
lines
PR 58817: allow userland access to the TCPA. Patch from Jared.
Revision 1.1.6.1: download - view: text, markup, annotated - select for diffs
Sun Aug 1 22:42:21 2021 UTC (3 years, 5 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1: +3 -3
lines
Sync with HEAD.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Jul 24 11:36:41 2021 UTC (3 years, 5 months ago) by jmcneill
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-futex2-base,
thorpej-futex2,
thorpej-cfargs2-base,
thorpej-cfargs2,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
netbsd-10-base,
netbsd-10-1-RELEASE,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1,
netbsd-10,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -3
lines
acpi: /dev/acpi: fix bounds check when reading tables
Revision 1.1.2.2: download - view: text, markup, annotated - select for diffs
Mon Dec 14 14:38:05 2020 UTC (4 years, 1 month ago) by thorpej
Branches: thorpej-futex
Diff to: previous 1.1.2.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.2.1: +220 -0
lines
Sync w/ HEAD.
Revision 1.1.2.1
Sun Dec 6 02:57:30 2020 UTC (4 years, 1 month ago) by thorpej
Branches: thorpej-futex
FILE REMOVED
Changes since revision 1.1: +0 -220
lines
file acpi_dev.c was added on branch thorpej-futex on 2020-12-14 14:38:05 +0000
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Dec 6 02:57:30 2020 UTC (4 years, 1 month ago) by jmcneill
Branches: MAIN
CVS tags: thorpej-futex-base,
thorpej-cfargs-base,
thorpej-cfargs,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Branch point for: thorpej-i2c-spi-conf,
thorpej-futex
acpi: add character device for accessing ACPI tables
The /dev/acpi character device gives an aperture into physical memory
that allows only read access to known ACPI tables: RSDP, XSDT/RSDT, and
the root tables. Adapt acpidump(8) to use this interface by default,
falling back to the old /dev/mem method if it is not available or if
ACPIDUMP_USE_DEVMEM=1 is set in the environment. The user visible benefit
of this change is that "options INSECURE" is no longer required to
dump ACPI tables.
CVSweb <webmaster@jp.NetBSD.org>