summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-04-25use delay() and not tsleep() in attach. makes driver work properly withNiall O'Higgins
``Ensoniq CT5880''-based card. from netbsd rev 1.59 ok mickey@
2005-04-25Pass the complete keybuffer to wskbd_rawinput(); dnkbd now works under X11.Miod Vallat
2005-04-25Use ETHERTYPE_VLAN.Brad Smith
2005-04-25Use ETHERTYPE_VLAN.Brad Smith
2005-04-25remove the stepping info since this isn't rightBrad Smith
2005-04-24Oops, 1.3 would cause a keyboard plugged at boot time to start in the wrongMiod Vallat
state...
2005-04-24- switch Scott Reynold's copyright to 3-clause BSDMartin Reindl
- do not attach on the MacTV, fix base address on the IIfx (untested) - no need to count sc->sc_ringing up, just set to 1 if ringing; timeout fix ok miod@ from NetBSD
2005-04-24Fix cisco-mode check in lcp up/down.Can Erkin Acar
2005-04-24add fxp-d102e to the listBrad Smith
2005-04-24add microcode to support interrupt mitigation on theBrad Smith
82551 F stepping chipset. From FreeBSD via Dmitry Bogdan <dsb at imcs dot dvgu dot ru>
2005-04-24Do down-sampling of the high-resolution touch pad events in kernel,Uwe Stuehler
and provide sysctls for fine-tuning the touch pad area that covers the screen. Reasonable defaults are provided, but each machine can be a bit different due to the manufacturing process.
2005-04-24Use the IANA assignment IFT_L2VLAN.Brad Smith
From FreeBSD/NetBSD Tested by camield@ and Alexey E. Suslikov <cruel at texnika dot com dot ua> ok camield@
2005-04-24- fix and update commentsBrad Smith
- use ETHERTYPE_IP instead of magic value - saanp -> type_ipv4 From FreeBSD ok mickey@
2005-04-23accept VLAN-sized framesBrad Smith
2005-04-23styleBrad Smith
2005-04-23- always accept VLAN-sized framesBrad Smith
- support setting the MTU
2005-04-23pay attention to failed relookups, compensate for a reference lost inPedro Martelletto
ufs_checkpath(), optimize a if/else's logical structure. diff mostly from netbsd, okay tedu@ fgsch@ deraadt@, tested by many, jcs@ in particular, thanks. fixes PRs 4040, 4126, 4169 and 4180.
2005-04-23Discard 0 byte keyboard identification strings.Miod Vallat
Do not invoke wskbd_rawinput() with an empty buffer.
2005-04-23Fix newer Xircom CBE2-100 cards.Brad Smith
We have to enable the connection to the MII first. Doing so fixes the problem cards without breaking the older, working cards. From FreeBSD
2005-04-23make sure bus mastering is enabledMartin Reindl
ok brad@ from NetBSD
2005-04-22Do not process the FIFO during interrupts when we are polling.Miod Vallat
Also, if no keyboard has been detected at initialization, correctly initialize the state machine so that keyboard hotplug works.
2005-04-22Doh, typo in constant...Miod Vallat
2005-04-22Oops!Miod Vallat
2005-04-22Driver for the Apollo Domain keyboard and mouse, for the HP 9000/4xx series.Miod Vallat
Claims the console keyboard if a keyboard is detected at boot time, otherwise HIL is preferred (but due to wsmux both can be used simultaneously).
2005-04-22Allow an external device to force the HIL loop to not claim the keyboardMiod Vallat
console.
2005-04-22When synproxy completes the replayed handshake and modifies the stateDaniel Hartmeier
into a normal one, it sets both peers' sequence windows. Fix a bug where the previously advertised windows are applied to the wrong side (i.e. peer A's seqhi is peer A's seqlo plus peer B's, not A's, window). This went undetected because mostly the windows are similar and/or re- advertised soon. But there are (rare) cases where a synproxy'd connection would stall right after handshake. Found by Gleb Smirnoff.
2005-04-22sparc -> sparc64Brad Smith
2005-04-22Pass -Wall, complete prototypes, some KNF; no functional change.Miod Vallat
2005-04-21remove (now obsolete) handling of IFT_PROPVIRTUAL/bridge*. tested by camield@Jun-ichiro itojun Hagino
2005-04-21careful strlcpy and snprintf return handling; ok pedro beckTheo de Raadt
2005-04-21scan the next mode if nothing has been found. this is necessary if theReyk Floeter
device supports different incompatible modes in the same channel range, like like 11b and "pure" 11G mode. ok dlg@ pvalchev@
2005-04-21Correctly handle allocations of size 1 at an extent boundary; from NetBSD.Miod Vallat
2005-04-21Make the non-_KERNEL compilation usable again, in order to add a regress test.Miod Vallat
2005-04-21snprintf error handling, ok beck cloderTheo de Raadt
2005-04-21Move i2c open/close from callers into zaudio_standby. Fixes an error path.Christopher Pascoe
2005-04-21Catch failed hook_establish call immediately, rather than misbehaving andChristopher Pascoe
panicing at detach time. ok dhartmei@ henning@
2005-04-21If the SMM driver had enabled ownership change interrupts, re-enable themChristopher Pascoe
temporarily before we attempt to take control. ok dlg@
2005-04-21Preserve any configuration data that may have been set by SMM/BIOS overChristopher Pascoe
chip reset. ok dlg@
2005-04-21handle return value of snprintf correctlyHans-Joerg Hoexer
ok deraadt@
2005-04-21Relocate debugging printf so it describes the right thing.Christopher Pascoe
2005-04-21Fix inverted logic when testing for successful SMM handover.Christopher Pascoe
2005-04-21o if the mac address cannot be read, just fail and disestablish theFederico G. Schwindt
irq (for shared irq's) on failure. (should other drivers do the same?) o if it's a rev 0x12 card, only use the first phy as it reports a non-existent one as well (From FreeBSD). o remove splimp/splx from ste_attach(). o some cleanup. thanks to matt at mattroberts dot org and paolo at actcom dot net dot il for testing; commit deraadt@.
2005-04-21clean dmesg outputTheo de Raadt
2005-04-21count fpu lazy context switches; deraadt@ okMichael Shalayeff
2005-04-21provide pgup, pgdown, home and end by using fn with the arrow keys.David Gwynne
ok drahn@ deraadt@ uwe@
2005-04-21-bceTheo de Raadt
2005-04-21no need to check for 0, it copes, spotted by beckTheo de Raadt
2005-04-21correct idion for snprintf failure handling; ok cloderTheo de Raadt
2005-04-21unused variable n; ok cloderTheo de Raadt
2005-04-21correct idiom for snprintf failure handling; ok beckTheo de Raadt