summaryrefslogtreecommitdiff
path: root/sys/dev/videomode
AgeCommit message (Collapse)Author
2023-11-26sys: Automated cleanup of cdefs and other formattingWarner Losh
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row. Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/ Sponsored by: Netflix
2023-09-25videomode: Regenerate filesJohn Baldwin
Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D41953
2023-09-25videomode/devlist2h.awk: Don't include $FreeBSD$ in generated filesJohn Baldwin
Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D41952
2023-08-16sys: Remove $FreeBSD$: one-line bare tagWarner Losh
Remove /^\s*\$FreeBSD\$$\n/
2023-08-16sys: Remove $FreeBSD$: one-line sh patternWarner Losh
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16sys: Remove $FreeBSD$: one-line .c patternWarner Losh
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
2023-08-16sys: Remove $FreeBSD$: two-line .c patternWarner Losh
Remove /^#include\s+<sys/cdefs.h>.*$\n\s+__FBSDID\("\$FreeBSD\$"\);\n/
2023-08-16sys: Remove $FreeBSD$: one-line .c comment patternWarner Losh
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
2022-04-19videomode: Fix a typo in an kernel messageGordon Bergling
- s/Seperate/Separate/ Obtained from: NetBSD MFC after: 3 days
2021-12-09modules: increase MAXMODNAME and provide backward compatBjoern A. Zeeb
With various firmware files used by graphics and wireless drivers we are exceeding the current 32 character module name (file path in kldxref) length. In order to overcome this issue bump it to the maximum path length for the next version. To be able to MFC provide backward compat support for another version of the struct as the offsets for the second half change due to the array size increase. MAXMODNAME being defined to MAXPATHLEN needs param.h to be included first. With only 7 modules (or LinuxKPI module.h) not doing that adjust them rather than including param.h in module.h [1]. Reported by: Greg V (greg unrelenting.technology) Sponsored by: The FreeBSD Foundation Suggested by: imp [1] MFC after: 10 days Reviewed by: imp (and others to different level) Differential Revision: https://reviews.freebsd.org/D32383
2020-09-01videomode: clean up empty lines in .c and .h filesMateusz Guzik
Notes: svn path=/head/; revision=365139
2015-06-18Add hskew field to struct videomode. It is required by some controllersOleksandr Tymoshenko
that are not 100% VESA-compatible (e.g. TDA19988 HDMI framer) Notes: svn path=/head/; revision=284533
2015-02-15Import videomode code from NetBSD which is needed by USB display link drivers.Hans Petter Selasky
Notes: svn path=/head/; revision=278798