summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2006-08-13fix a panic when trying to fdisk vnd devices (not svnd) wichThordur I. Bjornsson
are back by weird images (such as the ones qemu creates). proplem found the hard way by msf@ ok mickey@, pedro@
2006-08-13RAW_PART p_size on floppies and mcd's should be in sectors.Kenneth R Westerback
Only 'Japanese 1.2MB' floppies have sectors that are not 512 bytes, according to isa/fd.c's fd_types[]. SCSI/ATAPI cd's already use sectors, and mcd cd's should be no different. So there should be no functional change.
2006-08-13fix a typo, BNX_DRBUG -> BNX_DEBUGBrad Smith
2006-08-13Define and use FD_BSIZE, similar to FD_BSIZE from sparc and sparc64Kenneth R Westerback
fd. Eliminate unused variable and FDC_BSIZE which was only used to set value of the unused variable. No change to object file.
2006-08-13Enable hostap mode. Tested with acx100 and acx111.Marcus Glocker
2006-08-12Rather than using cs->sc_size to set d_secperunit and then RAW_PART'sKenneth R Westerback
p_size, use d_secperunit to set RAW_PART's p_size. This is more consistant with other usage and makes the intent clearer. This should be a no-op.
2006-08-12Setting d_secsize to DEV_BSIZE (or 1 << DEV_BSHIFT, or 512) and thenKenneth R Westerback
setting RAW_PART's p_size to d_secperunit * (d_secsize / DEV_BSIZE) is a waste of a few ops. And p_size should be in sectors anyway. Just set RAW_PART's p_size to d_secperunit to make usage consistant across the tree. Should be a no-op.
2006-08-12KNF tweak.Marcus Glocker
2006-08-12Fill ic_max_rssi with values depending on the radio type. Makes signalMarcus Glocker
strength in percentage work. ok jsg@
2006-08-12the delorme earthmate is NOT a HID (UQ_BAD_HID)Jason Wright
2006-08-12syncJason Wright
2006-08-12another delorme earthmate-alikeJason Wright
2006-08-11typo, settning -> settingBrad Smith
2006-08-10RegenMiod Vallat
2006-08-10Embed device list comments in generated hildevs_data.h file; no functionalMiod Vallat
change.
2006-08-10Handle the ``arrow repeat'' special scancode on button boxes; from the oldMiod Vallat
X11R5 server, untested.
2006-08-10No need for needs-flag for hil and hilms.Miod Vallat
2006-08-10- eliminate re-initialization's when adding IP addresses.Brad Smith
- simplify ioctl handler.
2006-08-10match the Coastal ChipWorks TNC-X (yet another uftdi)Jason Wright
2006-08-10yet another uftdi: Coastal ChipWorks TNC-XJason Wright
2006-08-10- ANSI functionsBrad Smith
- de-register - remove return at the end of void functions - some cosmetic tweaking
2006-08-10- move the promiscuous mode handling code to xl_setpromisc() and simplifyBrad Smith
the ioctl handler. - eliminate re-initialization's when adding IP addresses.
2006-08-10move the promiscuous mode handling code to sis_setpromisc() and simplifyBrad Smith
the ioctl handler.
2006-08-10- xge_mcast_filter() -> xge_setmulti().Brad Smith
- move the promiscuous mode handling code to xge_setpromisc() and simplify the ioctl handler.
2006-08-10- Use BUS_DMA_NOWAIT flag with bus_dmamap_create() in xge_attach() for theBrad Smith
creation of transmit and receive DMA maps. - Fix typos in xge_alloc_rxmem(), make sure to destroy and unmap the RX descriptor map instead of the TX descriptor map when encountering an error. From Gireesh Nagabhushana @ Neterion
2006-08-10fix a use-after-free (read) of a mbuf in wpi_tx_intr().Damien Bergamini
2006-08-10tell if chipset supports MIMO in dmesg output.Damien Bergamini
2006-08-10unmap memory address space in bnx_release_resources().Brad Smith
2006-08-10cosmetic tweaking.Brad Smith
2006-08-10remove typedef's.Brad Smith
2006-08-10just use BYTE_ORDER directly instead of setting the drivers endian flags.Brad Smith
2006-08-10fix an obvious typo. found by Quentin Garnier.David Gwynne
2006-08-09cosmetic tweaks.Brad Smith
2006-08-09add sys/timeout.hBrad Smith
2006-08-09Change #if __LP64__ to #ifdef __LP64__ as requested by bradMarco Peereboom
2006-08-09Reorder dmamap & dmamem to match man page.Marco Peereboom
Redo detection of _LO & _HI macro; help from miod and jordan. ok beck brad
2006-08-09On detach the bus space was not unmapped correctly which could lead toMarcus Glocker
a panic. Fix it. Diff received by Marc Winiger <mw@msys.ch> - thanks! ok claudio@
2006-08-09define the size of regions in the register space in terms of bytes, notDavid Gwynne
dwords
2006-08-09mega-commit of unrelated changes to bring rum(4) into a working state.Damien Bergamini
more to come but works well enough for me to commit this over a rum(4). it shares a lot of code with ral(4) rt2661.c. thanks to jsg@ for sending me a rum(4).
2006-08-09flags for register TXRX_CSR4 were shifted one bit too much on the left.Damien Bergamini
this has probably affected short preamble support as well as hardware multi-rate retries settings.
2006-08-09fix endianness. this should give rate adaptation a better chance to workDamien Bergamini
on big endian architectures.
2006-08-09update the version I am tracking.Brad Smith
2006-08-09revert rev 1.119 as this seems to cause problems with some PHY.Brad Smith
2006-08-09Sync up to Intel's latest FreeBSD em driver (6.1.4). Adds PCI id for the PCIeBrad Smith
quad port copper adapter, improvements for media support with fiber adapters, and some fixes for the ICH8 support.
2006-08-09regenBrad Smith
2006-08-09add Intel 82571EB PCI Express quad port PCI id.Brad Smith
From Intel's FreeBSD driver.
2006-08-09Use the DMA map size from the DMA map instead of the dma_size field withBrad Smith
bus_dma sync's. ok dlg@ marco@
2006-08-09regenBrad Smith
2006-08-09add another Intel 5000 PCIe bridge and another Intel 6321ESB USB port.Brad Smith
2006-08-08Some KNF.Marcus Glocker