summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* add %option nounputassar2001-07-221-0/+2
|
* Add a few missing spl calls in preparation for an MFC of the miibusiedowse2001-07-221-6/+15
| | | | support.
* Note that the umass device requires scbus and dakris2001-07-222-2/+2
|
* Remove an old hack that remembered if the card type was Linksys byiedowse2001-07-221-7/+3
| | | | | | | storing a flag in the global variable 'linksys' during the probe routine and reading it during the attach routine. We now have the ED_VENDOR_LINKSYS vendor code stored in sc->vendor, so check that instead.
* make driver compile under 4.3-STABLEhm2001-07-221-0/+4
|
* Don't do sleep state transition if specified sleep state is notiwasaki2001-07-223-14/+20
| | | | supported by the system.
* Attach the miibus for Linksys/Dlink cards from the attach routine,iedowse2001-07-222-6/+11
| | | | | | | | | | | not from the probe routine. This was an oversight when I originally ported the miibus support to -current, though it was mostly harmless. We now set the vendor code to the new value ED_VENDOR_LINKSYS in ed_pccard_Linksys() at probe time. Then ed_pccard_attach() checks the vendor code, and sets up the miibus if appropriate. Reviewed by: imp
* As per further discussions on hackers redo the SIGCHLD patch to not generatedillon2001-07-222-8/+8
| | | | | | | | | an unexpected user-visible side effect with the sigaction flags. Also cleanup a minor union issue. Submitted by: Rudolf Cejka <cejkar@dcse.fee.vutbr.cz> MFC addendum: MFC will be combined w/ original commit MFC after: 3 days
* - Fix "off by one" error in VT_WAITACTIVATE. Correctly acceptyokota2001-07-221-5/+5
| | | | | | | | 0 as meaning the requesting vty. - Accept 0 as the requesting vty in VT_ACTIVATE as in VT_WAITACTIVE. PR: 24423 MFC after: 10 days
* revert previous commit (bad style and not needed)assar2001-07-221-1/+0
| | | | Noticed: bde
* Add another Dell 3/Di PCI ID. You'd think they had enough of thesemsmith2001-07-221-0/+1
| | | | already...
* add prototype for dosetrlimitassar2001-07-222-2/+2
|
* revert previous accidental commitassar2001-07-221-1/+5
|
* get rid of some printf and pointer type warningsassar2001-07-228-20/+18
|
* add <sys/sytm.h> (for cpufunc.h -> rdtsc)assar2001-07-211-0/+1
|
* add <sys/cdefs.h> (for __unused and such)assar2001-07-211-0/+1
|
* null_do_probe: mark as unusedassar2001-07-211-0/+2
|
* (vm_page_select_cache): add prototypeassar2001-07-211-0/+1
|
* Unset MAINTAINER.rnordier2001-07-218-16/+0
|
* update step.hm2001-07-212-4/+4
|
* Convert from acpi_strerror() to AcpiFormatException()msmith2001-07-2113-43/+39
| | | | Fix dangling include of the dear departed acpi_ecreg.h
* Update the OSD module to match the ACPI CA 20010717 import.msmith2001-07-218-144/+178
| | | | Submitted by: "Grover, Andrew" <andrew.grover@intel.com> (OsdHardware.c)
* Implement a "proper" timecounter hung off the ACPI timer device.msmith2001-07-211-20/+207
| | | | | | | | | This code is based on the mp_clock code by phk. It attempts to detect the PIIX4 (see comments for details) and use a workaround for its problems. This code is experimental, and could use some testing and review by a timekeeping enthusiast.
* Merge the EC register definitions into the EC module proper, they're notmsmith2001-07-212-204/+71
| | | | | | used anywhere else. AcpiOsSleepUsec() -> AcpiOsStall()
* Use our saved copy of the FADT rather than fetching it again.msmith2001-07-211-13/+5
|
* Don't call ourselves a "control method" anything, that's not useful.msmith2001-07-211-4/+6
| | | | | Move the "button pressed" diagnostics to the point where we can print out which button was actually pressed.
* The API for loading tables changed (we no longer explicitly search for themsmith2001-07-212-19/+4
| | | | | | | | | | | RSDP, it's now found via a callback). AcpiOsSleepUsec() went away, use AcpiOsSleep() instead (we could use AcpiOsStall() too) AcpiFormatException() was changed to make more sense (it behaves like our old acpi_strerror() did), so throw acpi_strerror() away (still #defined in acpivar.h though, we need to sweep these seperately).
* Merge local changes with the ACPI CA 20010717 import.msmith2001-07-215-114/+80
|
* This commit was generated by cvs2svn to compensate for changes in r80062,msmith2001-07-2177-1287/+1240
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-2182-1401/+1320
| |
* | This commit was generated by cvs2svn to compensate for changes in r80060,msmith2001-07-211-0/+190
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of the Intel ACPI CA 20010717 snapshot.msmith2001-07-211-0/+190
| |
* | Add a missing ~ so that the LO_INITIALIZED flag actually gets turned offjhb2001-07-201-1/+1
| | | | | | | | in witness_destroy().
* | Put a knob in the kernel config files to tweak the user max stack size.pirzyk2001-07-203-4/+9
| | | | | | | | | | | | PR: kern/28925 Reviewed by: bakul@bitblocks.com and tlambert2@mindspring.com on -arch. MFC after: 1 week
* | gif isn't a count device anymore so don't put a number after it.brooks2001-07-202-2/+2
| | | | | | | | Pointed out by: brian
* | Fix typo; the meaning of the 3rd parameter to genkbd_keyaction() isyokota2001-07-201-1/+1
| | | | | | | | | | | | | | 'up' rather than 'down'. PR: 22466 MFC after: 10 days
* | Fix off by one error for ESC[1J.yokota2001-07-201-1/+1
| | | | | | | | | | PR: kern/18381 MFC after: 10 days
* | Define a couple of subroutines to replace duplicated common code. Youyokota2001-07-201-65/+59
| | | | | | | | shoulnd't see any functional difference.
* | Return consistent key action codes at key press and releaseyokota2001-07-208-95/+108
| | | | | | | | | | | | | | | | | | | | events. Otherwise you would see unexpected results if shift or locking keys are defined to give different actions depending on other shift/locking keys' state. Please keep the ukbd module and the kernel in sync, otherwise the USB keyboard won't work after this change. MFC after: 10 days
* | We haven't used this for ages, and we're not going to either.msmith2001-07-201-167/+0
| |
* | Support for USB floppies based upon SMSC USB FDD controller.n_hibma2001-07-201-0/+10
| | | | | | | | | | | | PR: 28877 Submitted by: Larry Baird <lab@gta.com> MFC after: 1 week
* | Fix type warnings.markm2001-07-201-4/+8
| | | | | | | | PR: 29101
* | We haven't had AcpiSetSystemSleepState for a while now, clean out themsmith2001-07-201-3/+0
| | | | | | | | prototype.
* | Add ACPI S2-S4BIOS Suspend/Resume code.takawata2001-07-2016-29/+1093
| | | | | | | | | | | | Some problems may remain. Reviewed by:iwasaki
* | Fix setting serial baud rate under ibcs2 emulation by moving a line to thejon2001-07-201-2/+2
| | | | | | | | | | | | | | | | | | right place. Reported by Jonathan Chen <jonc@pinnacle.co.nz> (someone with the same name who's not me) PR: i386/8414 Submitted by: Jonathan Chen <jonc@pinnacle.co.nz> MFC after: 2 weeks
* | When including pci header files, do things differently for 5x and 4ximp2001-07-191-0/+7
| | | | | | | | | | | | | | to make code sharing between the two easier. Also, only do power management in -current. It doesn't exist in stable yet.
* | Limit the device to only one playback channel until I can figure out whyscottl2001-07-191-1/+1
| | | | | | | | | | a) newpcm insists on using only the highest number channel available, and b) the maestro3 driver no longer likes anything above channel 0.
* | Fix an off-by-one error in the dma tag. This was causing the VM system toscottl2001-07-191-1/+2
| | | | | | | | | | | | freak out occasionally. MFC after: 1 week
* | remove support for creating files and directories from msdosfs_mknodassar2001-07-191-14/+1
| |
* | Rename vm86pcb_lock -> vm86_lock to correctly reflect its function.jlemon2001-07-191-6/+6
| | | | | | | | Requested by: jhb
OpenPOWER on IntegriCloud