#
23e63c4b |
| 20-Dec-2023 |
thorpej <thorpej@NetBSD.org> |
Remove unnecessary <sys/malloc.h> include.
|
#
c2b8d528 |
| 28-Aug-2023 |
andvar <andvar@NetBSD.org> |
rename DEBUG_UL to UL_DEBUG for naming consistency. remove stray UL_DEBUG definition in grf_ul.c
|
#
b6c8c37f |
| 28-Mar-2022 |
riastradh <riastradh@NetBSD.org> |
sys: Split struct device into a private device_impl.h.
Include this only inside autoconf itself, and a few files that abuse autoconf in ways I can't confidently make easy fixes for.
XXX kernel ABI
sys: Split struct device into a private device_impl.h.
Include this only inside autoconf itself, and a few files that abuse autoconf in ways I can't confidently make easy fixes for.
XXX kernel ABI change requires bump -- no more use of struct device internals allowed, previously done by some drivers
show more ...
|
#
c7fb772b |
| 07-Aug-2021 |
thorpej <thorpej@NetBSD.org> |
Merge thorpej-cfargs2.
|
#
2a022cd2 |
| 27-Apr-2021 |
thorpej <thorpej@NetBSD.org> |
The Amiga and Atari ports abuse some autoconfiguration internals as part of their early console bring-up, so we need to expose some of the new internals to them and adapt the call sites.
|
#
f26cf4cb |
| 03-Nov-2016 |
kamil <kamil@NetBSD.org> |
Prefer modern simple past tense and past participle of catch
The "catched" form is obsolete and nonstandard, prefer "caught".
|
#
26a64d43 |
| 22-Jan-2014 |
christos <christos@NetBSD.org> |
gcc-4.8.x unused variable fixes
|
#
3b84b9cf |
| 08-Nov-2012 |
rkujawa <rkujawa@NetBSD.org> |
Make Amiga video drivers work again after device/softc changes. Patch from chs@.
|
#
cbab9cad |
| 27-Oct-2012 |
chs <chs@NetBSD.org> |
split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
#
01173747 |
| 15-Dec-2011 |
phx <phx@NetBSD.org> |
Amiga wscons/Xorg support, first phase. Implemented wscons for CV64 and CV64/3D. Other graphics cards drivers are prepared for it, but will not be attempted before Xorg is not running. The wscons sup
Amiga wscons/Xorg support, first phase. Implemented wscons for CV64 and CV64/3D. Other graphics cards drivers are prepared for it, but will not be attempted before Xorg is not running. The wscons support is disabled by default. A GENERIC kernel should behave like always. Use WSCONS to try out a kernel with wscons support. Done by rkujawa@ and phx@.
show more ...
|
#
62cf489d |
| 26-Oct-2009 |
cegger <cegger@NetBSD.org> |
kill extra whitespaces reviewed by tsutsui@
|
#
e2cb8590 |
| 18-Mar-2009 |
cegger <cegger@NetBSD.org> |
bcopy -> memcpy
|
#
82357f6d |
| 14-Mar-2009 |
dsl <dsl@NetBSD.org> |
ANSIfy another 1261 function definitions. The only ones left in sys are beyond by sed script! (or in sys/dist or sys/external) Mostly they have function pointer parameters.
|
#
454af1c0 |
| 14-Mar-2009 |
dsl <dsl@NetBSD.org> |
Change about 4500 of the K&R function definitions to ANSI ones. There are still about 1600 left, but they have ',' or /* ... */ in the actual variable definitions - which my awk script doesn't handle
Change about 4500 of the K&R function definitions to ANSI ones. There are still about 1600 left, but they have ',' or /* ... */ in the actual variable definitions - which my awk script doesn't handle. There are also many that need () -> (void). (The script does handle misordered arguments.)
show more ...
|
#
ce099b40 |
| 28-Apr-2008 |
martin <martin@NetBSD.org> |
Remove clause 3 and 4 from TNF licenses
|
#
8247f5f1 |
| 05-Mar-2007 |
he <he@NetBSD.org> |
Make the various graphics card drivers compile again. Use casts to char* before pointer arithmetic. Try to preserve `volatile' qualification where possible, though uses of kvtop(), strcpy(), copyin()
Make the various graphics card drivers compile again. Use casts to char* before pointer arithmetic. Try to preserve `volatile' qualification where possible, though uses of kvtop(), strcpy(), copyin() and copyout() gain an unfortunate but probably unavoidable __UNVOLATILE(). Correct various instances of "void *ba, fb" to have * in front of fb as well. Remove some redundant parenthesis pairs in some of the vga* macros.
show more ...
|
#
53524e44 |
| 04-Mar-2007 |
christos <christos@NetBSD.org> |
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
#
5f1c88d7 |
| 24-Dec-2005 |
perry <perry@NetBSD.org> |
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
|
#
95e1ffb1 |
| 11-Dec-2005 |
christos <christos@NetBSD.org> |
merge ktrace-lwp.
|
#
d20841bb |
| 13-Feb-2004 |
wiz <wiz@NetBSD.org> |
Uppercase CPU, plural is CPUs.
|
#
7e681f70 |
| 06-Jan-2003 |
wiz <wiz@NetBSD.org> |
interrupt with two rs.
|
#
5001cdaf |
| 01-Jan-2003 |
thorpej <thorpej@NetBSD.org> |
Use aprint_normal() for cfprint routines.
|
#
c5e91d44 |
| 02-Oct-2002 |
thorpej <thorpej@NetBSD.org> |
Use CFATTACH_DECL().
|
#
9a711d69 |
| 27-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Declare all cfattach structures const.
|
#
8dd04cdc |
| 03-Aug-2002 |
itojun <itojun@NetBSD.org> |
correct range check, have overflow check, fix type mismatches, for cmap args and some other calls. from openbsd
|