summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
1997-09-02macro fix; mason@primenet.com.auTheo de Raadt
1997-08-25better mmap support, what funTheo de Raadt
1997-08-22wscons -> vga_xxx -> vga mmap() support. first cutTheo de Raadt
1997-08-22do not check for sc_ioctl in mmap callTheo de Raadt
1997-08-22nbits should probably actually be initialized.Jason Downs
1997-08-20Wavelan code rolled out. It works, but there are copyleft problems.Angelos D. Keromytis
1997-08-20Fix for some stupid ne2000 clones that get into a weird state andTodd C. Miller
are probed as WD instead. From Martin Husemann <martin@rumolt.teuto.de>
1997-08-19- add wavelan files in files.pcmciaAngelos D. Keromytis
- accept version 5.0 from the card as legal - fix the mapping (pcmcia.c, pcmcia_read_cis())
1997-08-19SANYO CRD-254P has AQUIRK_NOCAPACITYTheo de Raadt
1997-08-17Add quirk for MATSHITA CR-574, from Berndt Josef Wulf <wulf@ping.net.au>Todd C. Miller
1997-08-12Removed unused vars. Added missing arg to bus_space_map.Niklas Hallqvist
Reported by Berndt Josef Wulf <wulf@ping.net.au>
1997-08-08typoNiklas Hallqvist
1997-08-08Change the bounds_check_with_label API to also take a cpu_disklabelNiklas Hallqvist
reference for making transferral of meta-information possible from readdisklabel to bounds_check_with_label. The first (and maybe only) thing that will use this is the multi-disklabel-format code on the alpha where the labelsector is passed via cpu_disklabel so the label write-protection can work correctly no matter what label was found. Also use a new macro DKBAD to get at the dkbad field of the cpu_disklabel implementations that contain it. This too is for multi-disklabel architectures where the "bad" field can be inside a union. Use this macro as a means for a driver to check if an architecture supports dkbad constructs. Remove proto of bounds_check_with_label from all MD disklabel.h as it is in sys/disklabel.h. I have not been able to test the changes everywhere, if I break anything I apologize, and promise to fix it as soon as I become aware of it.
1997-08-08Stab at fixing the locators.h mess, test!Niklas Hallqvist
1997-08-08Initialize hwreset.Jason Downs
1997-08-08Initialize hwreset.Jason Downs
1997-08-08Mostly sync to NetBSD-current 970804 + tags.Jason Downs
1997-08-08Mostly sync to NetBSD-current 970804.Jason Downs
Apologies if this breaks anyone else using the MI ESP driver...
1997-08-08Add hwreset callback; drivers need to set this appropiately.Jason Downs
1997-08-07prettyNiklas Hallqvist
1997-08-07silence this thing againTheo de Raadt
1997-08-05Make compile on alphaNiklas Hallqvist
1997-08-04Change disable_intr()/enable_intr() to splhigh()/splx().dgregor
Fix bug of 'tp' not being initialized in cyopen - patch from Theo de Raadt. Thanks to Niklas Hallqvist and Theo de Raadt for finding this bug.
1997-08-01squish into one lineTheo de Raadt
1997-07-31text video attributes, tested only on vga, send me E-mail if it breaks ↵kstailey
something, thx.
1997-07-31off by one in clear screen codekstailey
1997-07-31fix vi on console by not moving cursor when printing nullskstailey
1997-07-31bus_space_copy_2() is now overlap safekstailey
1997-07-31Support for newer cards with i82555 PHY. From FreeBSD.Jason Downs
1997-07-30KNF and other style nitsNiklas Hallqvist
1997-07-30Sync to netbsd + use OpenBSD bus_space_*_raw_ APINiklas Hallqvist
1997-07-30Sync to NetBSD. Adapt to use bus_space_multi_raw* interface of OpenBSD.Niklas Hallqvist
Some KNF too.
1997-07-29Support BSD/OS 2.1, add OpenBSD tags.Jason Downs
1997-07-28prettyTheo de Raadt
1997-07-28insert char (for real)kstailey
1997-07-27arrgh! (sigh) (*sniffle*)kstailey
Fix insert char to erase more than one char in the newly created empty space past the insertion point.
1997-07-25damnitTheo de Raadt
1997-07-25updated from eisadevsMichael Shalayeff
1997-07-25more eisa codes (Jason Wright, netbsd-pr#3853)Michael Shalayeff
1997-07-13Get rid of pauseTobias Weingartner
1997-07-12Add PnP stuff. Should compile, doubt if it works 100%. Worked forTobias Weingartner
my SB at one point, but it's been a while... Thanks Theo for giving me this code. It still needs a lot of work, all my fault... ;-)
1997-07-12Add missing sc->sc_dev.dv_xname arg to isa_intr_establish().Todd C. Miller
1997-07-10add insert char capability (and no bickering about it being ANSI 8c{)]kstailey
1997-07-10sync with NETBSD 30/3/97 + adapating aria.cNiels Provos
1997-07-10fix vga_copycols(9)kstailey
1997-07-10fix backward scrollingkstailey
1997-07-09Do not lose our ethernet addressNiklas Hallqvist
1997-07-09arghTheo de Raadt
1997-07-09alpha/common/ insults my filecTheo de Raadt
1997-07-08Add fix for another quirky behaviour: sending the command after a syncmhitch
negotiation sometimes doesn't send all the command data for some reason. Transfer remaining fifo data, and if that's not enough, pad the command. This fixes a system reboot during SCSI device probes. From my NetBSD fix. Add missing code to start another device when a disconnect occurs. Also from NetBSD. For all other unknown interrupt conditions, print an explanitory message before rebooting the system. This will be useful in determining other reboots if they happen in the driver. From jonathan@netbsd.org.