summaryrefslogtreecommitdiffstats
path: root/sys/dev
Commit message (Collapse)AuthorAgeFilesLines
* Fixed compilation warnings with option VGA_NO_MODE_CHANGE.ru2004-12-151-1/+3
| | | | PR: kern/71130
* Add the PCI ID for the Adaptec 2230SLP card.scottl2004-12-151-0/+2
| | | | Submitted by: Ray Gilstrap
* Use the SYSCTL_ADD_OID macro, instead of directly calling sysctl_add_oid().ssouhlal2004-12-151-1/+1
| | | | Approved by: anholt, grehan (mentor)
* Like on the ath_rate_onoe component, make this compile on amd64. Convertpeter2004-12-151-2/+2
| | | | | | | | | pointers to an integer via uintptr_t. Fix an apparent bug that caused a compile failure. ieee80211_iterate_nodes() takes ic->ic_sta as its first argument on the onoe module. It had just 'ic' here in the same context, which was a mismatched argument.
* Make this amd64-clean. sizeof is long on amd64, so things that do a printfpeter2004-12-152-5/+8
| | | | | | | | of a sizeof, need to use %z to get the correct type on all our platforms. Also, convert integers<->pointers via uintptr_t. (I think Sam's instructions were for me to commit this. If I misunderstood, then I apologize in advance.)
* Bring back ability to use FR support with sppp from Cronyx.rik2004-12-141-1/+1
|
* Add a callout to dump card status on command queue timeouts.mdodd2004-12-142-1/+48
|
* Modify ida_v3_done() to treat FIFO status of -1 as FIFO empty (0).mdodd2004-12-141-1/+7
| | | | | This is what ida_v4_done() does and seems to be necessary with some firmware versions on v3 devices.
* Reformat arguments bus_dma_tag_create().mdodd2004-12-142-21/+45
|
* Make LINT compile.phk2004-12-141-1/+1
| | | | | | | When leaving functions for ddb use don't make them static: it makes gcc think they are unused. Shouldn't this be in #ifdef DDB anyway ?
* A bunch more whitespace and formatting diff reductions for NetBSD.julian2004-12-141-17/+19
| | | | | Obtained from: NetBSD MFC after: 1 week
* Don't abandon ship just because the number of companions doesn't seem correct.julian2004-12-141-3/+6
| | | | | Obtained from: NetBSD MFC after: 1 week
* Slightly reorganise part of the ohci_softintr() functionjulian2004-12-141-15/+26
| | | | | | | | | | | to better keep track of the total amoutn transferred during a transfer. Seems similar to some code in the NetBSD version. I notice they have incorporated matches from him so I don't know which direction it went. Submitted by: damien.bergamini@free.fr Obtained from: patches to make the ueagle driver work MFC after: 1 week
* Small formatting change..julian2004-12-141-1/+1
| | | | | | | Move a declaration to the same place as in NetBSD. Obtained from: NetBSD MFC after: 1 week
* Unify ACPI_DEBUG support for all OEM drivers under ACPI_OEM. Since more thannjl2004-12-136-4/+14
| | | | | | | one will never be supported on the same platform, this does not hurt debugging. MFC after: 3 days
* Make code MPSAFE.rik2004-12-133-181/+768
| | | | | | | | You could turn this off by debug.mpsafenet=0 for full network stack or via debug.{cp|cx|ctau}.mpsafenet for cp(4), cx(4) and ctau(4) accordingly. MFC after: 10 days
* Might as well get the right $NetBSD$ string while we are at it.julian2004-12-131-1/+1
| | | | MFC after: 1 week
* Diff reduction to NetBSD.julian2004-12-131-67/+59
| | | | | | | | | Now only things that are different between us and NetBSD show up. Means that these files are more of NetBSD style in some places but since thay are NetBSD files, um, that's ok. Obtained from: NetBSD MFC after: 1 week
* MFNetBSDjulian2004-12-131-43/+44
| | | | | | | | Whitespace diff reduction, formatting fixes and one actual arithmetic error that NetBSD have fixed. Obtained from: NetBSD MFC after: 1 week
* We don't need vnode.h, but do need uio.h in these files. vnode.himp2004-12-134-4/+4
| | | | | | shouldn't be included in drivers, generally, so remove them. OK'd by: phk
* Add sys/uio.h explicitly, and move sys/vnode.h include to be moreimp2004-12-134-4/+8
| | | | | | | alphabetical. # vnode.h should not be included here, but it is required for proper decoding # of the flags args. This may change in the future...
* Re-enable link programming on resume. It appears the previous boundsnjl2004-12-131-2/+0
| | | | error had caused the hang and it has been corrected now.
* sys/vnode.h is inappropriate for a driver. Use sys/uio.h instead.imp2004-12-131-1/+1
|
* Crank down the lame-o-matic a notch by moving the = inside the /* */ ratherimp2004-12-131-1/+1
| | | | than outside to fix the build.
* Allow the acpi_ibm module to be built with ACPI_DEBUG.scottl2004-12-132-0/+6
|
* Try make code for teh M$ Intellimouse less obtrusivejulian2004-12-131-11/+24
| | | | when not using such a device.
* Don't export the 'dt' field as that would break the exisiting ABI.julian2004-12-131-4/+5
| | | | | | | keep the code but comment it out so that if the ABI changes we can see easily what should be done. Submitted by: iedowse
* Revert addition of Lide scanner entry..julian2004-12-132-2/+0
| | | | It's a duplicate of an already exisiting entry. (with another name).
* Separate mse driver into a core driver and a bus attachments. Separate outimp2004-12-124-426/+953
| | | | | | | | | | | | | the ISA and CBUS (called isa on pc98) attachments. Eliminate all PC98 ifdefs in the process (the driver in pc98/pc98/mse.c was a copy of the one in i386/isa/mse.c with PC98 ifdefs). Create a module for this driver. I've tested this my PC-9821RaS40 with moused. I've not tested this on i386 because I have no InPort cards, or similar such things. NEC standardized on bus mice very early, long before ps/2 mice ports apeared, so all PC-98 machines supported by FreeBSD/pc98 have bus mice, I believe. Reviewed by: nyan-san
* Pass the file->flags down to geom ioctl handlers.phk2004-12-122-3/+9
| | | | | | | | Reject certain ioctls if write permission is not indicated. Bump geom API version. Reported by: Ruben de Groot <mail25@bzerk.org>
* Add support for Cannon LIDE 20 scannerjulian2004-12-122-0/+2
| | | | | | PR: kern/74301 Submitted by: Vlad Manilici <vman@tmok.com> MFC after: 1 week
* record the bssid for an associationsam2004-12-121-0/+1
| | | | Tested by: Daniel O'Connor
* Add support for USB Microsoft Intellimousejulian2004-12-122-21/+51
| | | | | | PR: kern/70607 Submitted by: Matt Wright <matt@consultmatt.co.uk> MFC after: 1 week
* Changes to cache endpoint descriptors for all the interfaces. this informationjulian2004-12-121-34/+114
| | | | | | | is not always available if we change interfaces. Submitted by: jamie at bishopston dot net (jamie jones) MFC after: 1 week
* Some changes related to reading the MAC-address from the VPD on systemsmarius2004-12-121-19/+18
| | | | | | | | | | | | | | | | without Open Firmware: - The PCI data structure of some HME PROMs contains a non-zero interface revision in the class code. Thus remove the checks for matching class code and PCI data structure length and revsion. These were pretty much useless anyway as we only really need the pointer to the VPD which is located before the structure length and revision fields. - On Sun QFE (Quad FastEthernet) cards read the Nth MAC-address for the Nth HME controller instead of always the first one for all four HMEs. [1] - Improve the comment describing the used VPD format to better reflect reality. - Minor clean-up. Prodded by: joerg [1]
* Add support for Tau-PCI-L model - one V.35/RS-232 orrik2004-12-112-717/+719
| | | | RS-530(449)/X.21 interface.
* Clean up from '#if __FreeBSD_version'.rik2004-12-111-357/+5
|
* Clean up from '#if __FreeBSD_version'.rik2004-12-101-320/+5
|
* Fix compilation and correct mapping from struct ifnet tosam2004-12-101-7/+9
| | | | | | struct ieee80211com after net80211 import. Submitted by: Tor Egge
* Partially backout 1.34. These ioctls and function cx_modem_status () arerik2004-12-091-0/+65
| | | | used by sync part of driver, so put them back.
* Complete the repo-copy of aac_ioctl.h from sys/dev/aac/to sys/sys.scottl2004-12-096-184/+5
|
* Add IBM Laptop extra device driver.takawata2004-12-091-0/+466
| | | | | | This depends on ACPI and RTC registers. Reviewed by: njl
* URL of the data sheet has changed.brueffer2004-12-091-1/+1
| | | | Obtained from: OpenBSD
* Compensate for off by one bugs in disk firmware for 48BIT addressing cutover.sos2004-12-094-3/+5
|
* Diff-reduction before merging if_axe to RELENG_4.rsm2004-12-083-1/+27
| | | | | Approved by: imp (mentor) MFC after: 1 week
* Update the ICH6 support so all 4 SATA channels can be used.sos2004-12-081-5/+13
| | | | | | | We still use "normal" mode, AHCI mode is in the works still. HW donated by: Sentex HW donated by: Yahoo!
* Update for net80211 changes.sam2004-12-086-99/+147
|
* o Update for net80211 changessam2004-12-083-205/+238
| | | | o Import some minor fixes from netbsd
* Update with last year of work.sam2004-12-085-1217/+3170
|
* Transmit rate control modules for the ath driver.sam2004-12-084-0/+1219
|
OpenPOWER on IntegriCloud