#
72a7af27 |
| 01-Jan-2003 |
thorpej <thorpej@NetBSD.org> |
Use aprint_normal() in cfprint routines.
|
#
b75a007d |
| 02-Oct-2002 |
thorpej <thorpej@NetBSD.org> |
Add trailing ; to CFATTACH_DECL.
|
#
ab29a17b |
| 01-Oct-2002 |
thorpej <thorpej@NetBSD.org> |
Use CFATTACH_DECL().
|
#
bf97c13c |
| 27-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Declare all cfattach structures const.
|
#
6c88de3b |
| 27-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Introduce a new routine, config_match(), which invokes the cfattach->ca_match function in behalf of the caller. Use it rather than invoking cfattach->ca_match directly.
|
#
d1ad2ac4 |
| 27-Sep-2002 |
thorpej <thorpej@NetBSD.org> |
Rather than referencing the cfdriver directly in the cfdata entries, instead use a string naming the driver. The cfdriver is then looked up in a list which is built at run-time.
|
#
6a3181d3 |
| 13-Nov-2001 |
lukem <lukem@NetBSD.org> |
add/cleanup RCSIDs
|
#
cffb5808 |
| 04-Jun-2000 |
cgd <cgd@NetBSD.org> |
Implement the more flexiable `evcnt' interface as discussed (briefly) on tech-kern and now documented in evcnt(9).
|
#
9c3842f4 |
| 15-Nov-1999 |
nisimura <nisimura@NetBSD.org> |
Relocate 'struct tc_softc' and several function declarations useful to outsides of 'tc.c' into 'tcvar.h'.
|
#
86f25663 |
| 22-May-1998 |
thorpej <thorpej@NetBSD.org> |
DECstation now provides bus_space and bus_dma data structures to us.
|
#
b5d3e435 |
| 19-Jan-1998 |
thorpej <thorpej@NetBSD.org> |
On the Alpha, pass down per-slot DMA tags to children.
|
#
19feaef2 |
| 12-Jan-1998 |
thorpej <thorpej@NetBSD.org> |
Adjust for changes in config.
|
#
0f0563f5 |
| 13-Sep-1997 |
enami <enami@NetBSD.org> |
Declare TCVERBOSE by defopt in files.tc. Include opt_tcverbose.h in tc.c.
|
#
38e9259a |
| 22-Jul-1997 |
jonathan <jonathan@NetBSD.org> |
Garbage-collect __BROKEN_INDIRECT_CONFIG from /sys/dev/tc
|
#
197d80c6 |
| 05-Dec-1996 |
cgd <cgd@NetBSD.org> |
update these so they compile whether or not __BROKEN_INDIRECT_CONFIG is defined.
|
#
2f614ee5 |
| 22-Oct-1996 |
cgd <cgd@NetBSD.org> |
update for new bus.h
|
#
86373f8c |
| 13-Oct-1996 |
christos <christos@NetBSD.org> |
backout kprintf changes
|
#
b5c4f2fc |
| 10-Oct-1996 |
christos <christos@NetBSD.org> |
printf -> kprintf, sprintf -> ksprintf
|
#
2a73ef60 |
| 27-Aug-1996 |
cgd <cgd@NetBSD.org> |
change cfprint_t type definition to take a const char *, rather than a char *, because that's what was really intended, and because if the print function modifies the string, various things could bec
change cfprint_t type definition to take a const char *, rather than a char *, because that's what was really intended, and because if the print function modifies the string, various things could become unhappy (so the string should _not_ be modified).
show more ...
|
#
2872eecc |
| 17-May-1996 |
cgd <cgd@NetBSD.org> |
(on the alpha) pass the bus_chipset_tag_t given to the bus down to the devices.
|
#
48fca88c |
| 29-Apr-1996 |
cgd <cgd@NetBSD.org> |
fix printf bogon (need : and space)
|
#
720c1486 |
| 18-Apr-1996 |
cgd <cgd@NetBSD.org> |
remove unnecessary header inclusion (machine/autoconf.h) and now-bogus comment. also, trim spaces at ends of lines, etc.
|
#
57fd0e26 |
| 09-Apr-1996 |
jonathan <jonathan@NetBSD.org> |
Fixes for -Wall -Wmissing-prototypes: include <sys/systm.h> to get a prototyped declaration of printf(). include <machine/autoconf.h> for port-specific typedefs. Remove unused variables.
|
#
3175cdba |
| 17-Mar-1996 |
jonathan <jonathan@NetBSD.org> |
Additional fixes to complete the NetBSD/1.1B config changes:
change tc_submatch() to compile with the new device-attach scheme: the TC bus uses a 'submatch' function which checks device locators and
Additional fixes to complete the NetBSD/1.1B config changes:
change tc_submatch() to compile with the new device-attach scheme: the TC bus uses a 'submatch' function which checks device locators and then calls a match function. Instead of calling cf->cf_driver->cd_match(), we now need to call cf->cf_attach->ca_match().
show more ...
|
#
532e9979 |
| 17-Mar-1996 |
thorpej <thorpej@NetBSD.org> |
New device attachment scheme:
- split softc size and match/attach out from cfdriver into a new struct cfattach.
- new "attach" directive for files.*. May specify the name of the cfattach s
New device attachment scheme:
- split softc size and match/attach out from cfdriver into a new struct cfattach.
- new "attach" directive for files.*. May specify the name of the cfattach structure, so that devices may be easily attached to parents with different autoconfiguration semantics.
show more ...
|