#
53524e44 |
| 04-Mar-2007 |
christos <christos@NetBSD.org> |
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
#
168cd830 |
| 16-Nov-2006 |
christos <christos@NetBSD.org> |
__unused removal on arguments; approved by core.
|
#
44b35078 |
| 12-Oct-2006 |
uwe <uwe@NetBSD.org> |
-Wextra fixes
|
#
9eddf385 |
| 09-Oct-2006 |
peter <peter@NetBSD.org> |
Remove (the default) #define XXXDEBUG and add the options to the relevant files.xxx file.
|
#
f135e0d6 |
| 24-Sep-2006 |
jmcneill <jmcneill@NetBSD.org> |
Add "name" parameter to powerhook_establish, to aid debugging. No objections on tech-kern@
|
#
7a51d4dd |
| 12-Apr-2006 |
jmmv <jmmv@NetBSD.org> |
Add an extra cookie to the ioctl and mmap wsdisplay accessops that points to the screen on which they are being called. The driver cannot guess this by itself but it is needed to implement, at least
Add an extra cookie to the ioctl and mmap wsdisplay accessops that points to the screen on which they are being called. The driver cannot guess this by itself but it is needed to implement, at least, the getwschar and putwschar functions in the correct place. There are no functional changes yet.
Tested on i386 (vga, vga_raster, machfb, vesafb), macppc and sparc64. Suggested and reviewed by macallan@.
show more ...
|
#
92c7bba3 |
| 29-Mar-2006 |
thorpej <thorpej@NetBSD.org> |
Use device_private().
|
#
95e1ffb1 |
| 11-Dec-2005 |
christos <christos@NetBSD.org> |
merge ktrace-lwp.
|
#
81bf6b30 |
| 04-Sep-2005 |
uwe <uwe@NetBSD.org> |
For HPCFB_CLASS_RGBCOLOR class propagate r/g/b widths and positions from hf_rgb to rasops_info.
|
#
7cdea212 |
| 22-May-2005 |
christos <christos@NetBSD.org> |
No 0x in front of %p...
|
#
f31bd063 |
| 27-Feb-2005 |
perry <perry@NetBSD.org> |
nuke trailing whitespace
|
#
d5aece61 |
| 29-Jun-2003 |
fvdl <fvdl@NetBSD.org> |
Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more.
|
#
b96eb959 |
| 29-Jun-2003 |
ichiro <ichiro@NetBSD.org> |
struct proc * -> struct lwp *
|
#
72a7af27 |
| 01-Jan-2003 |
thorpej <thorpej@NetBSD.org> |
Use aprint_normal() in cfprint routines.
|
#
c9b3657c |
| 02-Oct-2002 |
thorpej <thorpej@NetBSD.org> |
Add trailing ; to CFATTACH_DECL.
|
#
e46f039e |
| 02-Oct-2002 |
reinoud <reinoud@NetBSD.org> |
G/c static pow() function that was used to calculate (2^x) only; replaced the two instances with equivalent (1<<x).
|
#
9d4a6407 |
| 30-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Use CFATTACH_DECL().
|
#
f818766a |
| 27-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Declare all cfattach structures const.
|
#
71404bb5 |
| 25-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Don't include <sys/map.h>.
|
#
6a286a4f |
| 01-Sep-2002 |
takemura <takemura@NetBSD.org> |
BUGFIX: WSDISPLAYIO_SVIDEO and WSDISPLAYIO_GVIDEO don't work.
|
#
3d826105 |
| 04-Jul-2002 |
junyoung <junyoung@NetBSD.org> |
alloc_attr -> allocattr
Approved by Matthias Drochner.
|
#
c061e3c2 |
| 10-May-2002 |
uwe <uwe@NetBSD.org> |
Use symbolic WSCOL_* colour names instead of magic numbers.
|
#
090be593 |
| 13-Apr-2002 |
takemura <takemura@NetBSD.org> |
Fixed dev/hpc/hpcfb.c to set RI_BSWAP flag in 8bpp for rasops8.c and backout changes 'fix LCD byte-order setting': arch/hpcsh/dev/hd64461/hd64461video.c Rev. 1.7 to 1.8 arch/hpcmips
Fixed dev/hpc/hpcfb.c to set RI_BSWAP flag in 8bpp for rasops8.c and backout changes 'fix LCD byte-order setting': arch/hpcsh/dev/hd64461/hd64461video.c Rev. 1.7 to 1.8 arch/hpcmips/dev/plumvideo.c Rev. 1.23 to 1.24 arch/hpcmips/tx/tx3912video.c Rev. 1.24 to 1.25
show more ...
|
#
31144d99 |
| 17-Mar-2002 |
atatat <atatat@NetBSD.org> |
Convert ioctl code to use EPASSTHROUGH instead of -1 or ENOTTY for indicating an unhandled "command". ERESTART is -1, which can lead to confusion. ERESTART has been moved to -3 and EPASSTHROUGH has
Convert ioctl code to use EPASSTHROUGH instead of -1 or ENOTTY for indicating an unhandled "command". ERESTART is -1, which can lead to confusion. ERESTART has been moved to -3 and EPASSTHROUGH has been placed at -4. No ioctl code should now return -1 anywhere. The ioctl() system call is now properly restartable.
show more ...
|
#
345bbe46 |
| 27-Jan-2002 |
takemura <takemura@NetBSD.org> |
Do nothing if there is no screen.
|