summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2003-09-04remove an unneccessary (and incorrectly sized) bzeroAnil Madhavapeddy
fix suggested by tedu@, ok deraadt@, fgsch@
2003-09-04bzero the full malloced space, not the sizeof the pointerAnil Madhavapeddy
ok tedu fgsch deraadt
2003-09-03match a bunch more bge devices. May not work completely, but they're noJason Wright
more broken than before; ok deraadt.
2003-09-03bunch more bcm57xx devices and correct altima devices (from netbsd); ok deraadtJason Wright
2003-09-03support for bcm5823; based on patch from Jim Lambert, jlamber at futurex dot ↵Jason Wright
com; ok deraadt.
2003-09-03bcm 5823Jason Wright
2003-09-02Increase autonegotiation wait to 5000ms.Kenneth R Westerback
This gives autonegotiation a fair chance to complete. Copper switches can take several seconds to do autonegotiation. Fixes sk need to be poked after reboot and allows sk to use dhcp configuration. Problem and workaround reported by Laurence Tratt. Also minor cleanup: 1) Remove duplicate function prototypes/ 2) Remove unneeded '#include <malloc.c>'. From FreeBSD. 3) Remove some static's. ok deraadt@ nate@ henning@ henric@. Also tested by Laurence Tratt and Damien Couderc.
2003-09-02- drop number of openings by 4 to avoid "not queued" errors.Federico G. Schwindt
- check return from aac_start() and return correctly in case we need to reschedule the watchdog. convervative fix from niklas@, prompted by several ppl. krw and deraadt ok.
2003-09-02missing #endif, pr3431Ted Unangst
2003-09-02syncAlexander Yurchenko
2003-09-02Add Mustek DV2000 video camera; from Lizardo Desilos <lizardo@itvictoria.edu.mx>Alexander Yurchenko
ok nate@
2003-09-01syncAlexander Yurchenko
2003-09-01New vendor Micro Star International and its USB Bluetooth adapterAlexander Yurchenko
ok nate@
2003-08-31remove bogus cache test. Suggested by drahn@, ok mickey@, miod@.Matthieu Herrb
2003-08-28fix bzero size; from pechkinMichael Shalayeff
2003-08-28Sync ('make microcode') with change to aicasm_symbol.c:Kenneth R Westerback
Fix use of uninitialized variable by porting NetBSD patch to correctly initialize it. Said variable is used as the value of the define DOWNLOAD_CONST_COUNT in the generated file aic7xxxreg.h. This define is currently not used anywhere. Spotted and ok mickey@.
2003-08-28Fix use of uninitialized variable by porting NetBSD patch to correctlyKenneth R Westerback
initialize it. Said variable is used as the value of the define DOWNLOAD_CONST_COUNT in the generated file aic7xxxreg.h. This define is currently not used anywhere. Spotted and ok mickey@.
2003-08-27this bit is defined as prefetchable and not cachable and thus rename and use ↵Michael Shalayeff
appropriately
2003-08-24defines and struct for the ieee80211 framework; deraadt@ ok.Federico G. Schwindt
2003-08-23switch to ether_input_mbuf; krw@ testing and ok.Federico G. Schwindt
2003-08-23correct function names; from NetBSD.Federico G. Schwindt
krw@ and tdeval@ ok.
2003-08-22need to flip the operands wordwise for big endian machines. modexp worksJason Wright
on ppc now.
2003-08-21fix the offsets in decoding byte rom dd (verified per manual); miod@ okMichael Shalayeff
2003-08-21sys/types.h is not really needed w/ sys/param.hMichael Shalayeff
2003-08-21remove extra header file <sys/systm.h>. ok mickey@Kevin Lo
2003-08-20How about we NOT stomp all over memory past the end of the result buffer.Jason Wright
(Now modexp runs for non-1k/2k operations)
2003-08-20- The safenet chip really likes it's big nums to be written to differentJason Wright
parts of memory... picky picky ;) - zero the bignum memory after copying out the result (one less copy of sensitive material floating around...)... Why don't vendors provide a bit you can toggle that does this? - Oh, and modexp now works.
2003-08-20most of the infrastructure to support public key operation. This is justJason Wright
a snapshot of work in progress (doesn't work correctly yet).
2003-08-20regenMichael Shalayeff
2003-08-20some more mysons; from form@; deraadt@ okMichael Shalayeff
2003-08-19missing break.Mike Pechkin
jason@ ok
2003-08-19cleanup; from form@Michael Shalayeff
2003-08-19cleanup; from form@Michael Shalayeff
2003-08-19prefer memory mappings (to io)Michael Shalayeff
2003-08-19use pci_mapreg_map() to map the regs and some cleanups; form@ okMichael Shalayeff
2003-08-19pad some records some more; from Jon Olsson <jon@abc.se>Michael Shalayeff
2003-08-19rcsidsMichael Shalayeff
2003-08-19myson mtd803 ether and enable mtdphy no; form netbsd via form@Michael Shalayeff
2003-08-19give better depth and cmsizeMichael Shalayeff
2003-08-19implement WSDISPLAYIO_{GET,PUT}CMAP; untestedMichael Shalayeff
2003-08-19inquire ext config and dump it in debugging and also fix other debugging printsMichael Shalayeff
2003-08-18back out previous. miod pointed out that we don't recover from thisJason Wright
correctly, so complaining gives a better description of what's going on.
2003-08-18#ifdef warning about chained buffersJason Wright
2003-08-17implement WSDISPLAYIO_{S,G}MODEMichael Shalayeff
2003-08-17print out the graphics idMichael Shalayeff
2003-08-17cleanupMichael Shalayeff
2003-08-16AN983 needs 64BIT_HASH too, fixes multicastHenning Brauer
From: jared r r spiegel <jrrs@gateway.nodeless.net>
2003-08-15cleanup.Federico G. Schwindt
2003-08-15- remove ahc dependency, convert smc93cx6 into an attribute.Federico G. Schwindt
- support for 8 and 32 bit registers. from NetBSD. deraadt@ and krw@ testing and ok.
2003-08-15change arguments to suser. suser now takes the process, and a flagsTed Unangst
argument. old cred only calls user suser_ucred. this will allow future work to more flexibly implement the idea of a root process. looks like something i saw in freebsd, but a little different. use of suser_ucred vs suser in file system code should be looked at again, for the moment semantics remain unchanged. review and input from art@ testing and further review miod@