summaryrefslogtreecommitdiff
path: root/sys/dev/ic
AgeCommit message (Collapse)Author
2006-09-03add missing declchristos
2006-09-03add missing decl.christos
2006-09-03- comment out impossible comparisonschristos
- remove superfluous if statement
2006-09-03- add missing initializerchristos
- correct function decl.
2006-09-03avoid empty if statementschristos
2006-09-02add missing initializerschristos
2006-09-02Remove unused variable to make this build again.xtraeme
2006-09-02- fix incomplete initializerchristos
- static goes first
2006-09-02comment out impossible codechristos
2006-09-02Add missing initializerchristos
2006-08-31Per discussion on tech-kern and tech-userlevel, move the bit-twiddlingdyoung
macros, __BIT, __BITS, SHIFTIN, SHIFTOUT, and __arraycount() from lib/libkern/libkern.h to sys/cdefs.h. Add a __-prefix to SHIFTIN and SHIFTOUT, and add a manual page for the bit-twiddling macros, bits(3). Make the __BIT and __BITS macros "widthless," as best I can, by changing their type to uintmax_t from uint32_t. XXX The manual page lags this change by a bit. Define __PRIxBIT and __PRIxBITS printf(3) format strings.
2006-08-30Phobos boards (my G130 at least) have a non-standard srom layout. Try torumble
identify it and pull out the enaddr.
2006-08-30fix initializers.christos
2006-08-30add missing initializerchristos
2006-08-30fix incomplete initializerchristos
2006-08-28Remove unused variable 'periph' to make this build.xtraeme
2006-08-28add missing initializerchristos
2006-08-27typochristos
2006-08-27ifdef out unreachable code.christos
2006-08-27complete declarationschristos
2006-08-27Revert revision 1.4: it seems to have caused serious problems on sgimips,bjh21
so I should probably leave it until I get my Indy going.
2006-08-27#ifdef out unused ioctl (and wrong)christos
2006-08-27Fix typochristos
2006-08-27Use symbolic names for CSR values after reset.bjh21
2006-08-26When receiving a SCSI message, it's important not to deassert ACK on the lastbjh21
byte until we've worked out what to do with the message, since if we plan to reply to it we have to assert ATN before deasserting ACK. Implement this.
2006-08-26Use standard MSG_IS1BYTE, MSG_IS2BYTE, and MSG_ISEXTENDED macros ratherbjh21
than rolling our own.
2006-08-26Use the 'z' size modifier when printfing size_t, so that GCC doesn't complainbjh21
on systems were size_t isn't unsigned int.
2006-08-26Move the sgimips "sbic" driver from arch/sgimips/hpc/sbic.c tobjh21
dev/ic/wd33c93.c. This may not be the best WD33C93 driver we've got, but it's the most recently worked on and probably the most portable, so it seems like a good basis for further work (and in particular an acorn26 driver for the Acorn SCSI card). There's no functional change in this commit, and sgimips kernels still compile.
2006-08-23Acting as Elad's keyboard:christos
Place the securelevel checks in their logical locations. This will be clearer in the future when code changes to use kauth(9) calls. input and okay ad@
2006-08-23implement auto-detection of volume resolutionskent
2006-08-18G/c unnecessary includes.uwe
2006-08-17Fix all the -D*DEBUG* code that it was rotting away and did not even compile.christos
Mostly from Arnaud Lacombe, many thanks!
2006-08-162nd try. Fix errors (hopefully) that prevented this from compiling. Thisgdamore
has not been tested, as I lack the tools necessary to build this (and can't bootstrap pmppc toolchain for some reason.) Requested by garbled@
2006-08-13Provide a method for other display drivers to ask vga to free resourcesjmcneill
it had claimed while acting as the initial console device. This allows (for example) vga to be the initial console, and an accelerated framebuffer driver to take over later.
2006-08-12Avoid gcc4 warnings; voice is unsigned so no need to check "voice < 0".nakayama
2006-08-08fix a GCC uninitialised variable warning only seen at -O3.mrg
2006-08-051st cut of Powermac G5 support (uses bridge mode).sanjayl
2006-07-26add capability to support for S/PDIF.kent
If a codec supports for AC'97 S/PDIF, it will have an mixer "spdif.enable." However, we can't change the value of the mixer without AC'97 host driver's support.
2006-07-22Remove unused variable to make it compile again.martin
2006-07-22oops, no 'p' here. from xtraeme@.elad
2006-07-22don't call kauth_authorize_generic() when holding a lock, from yamt@.elad
2006-07-21- Use the LWP cached credentials where sane.ad
- Minor cosmetic changes.
2006-07-17remove lhs cast for gcc4christos
2006-07-14Consistently establish / disestablish shutdown hookseanb
in the bus layer and remove from common ath_attach(). Having it in both layers (on some bus architectures) was causing a double call to ath_stop() on shutdown which in turn was tickling the bus lockup described therin on slower machines.
2006-07-13Add an option COM_REGMAP to allow com(4) to use an array of register indices.gdamore
This allows us to convert aucom to just another com attachment, and cleanup some code in the com_arbus.c. Additionally, we use a common com_cleanup routine rather than having a zillion copies of it in the attachment points. This has been tested on a number architectures, and it has been shown to get close to comparable performance when COM_REGMAP is defined, and comparable when it is not defined. Approved by core@. Fixes PR port-evbmips/32362.
2006-07-12Note this driver is for the i82596CA and i82596DX/SX chips and provideskrll
links to documentation on developers.intel.com
2006-07-11Add power hooks for "ep* at pcmcia?".peter
ok christos@
2006-07-11Add power hooks for "ne* at pcmcia?".peter
ok christos@
2006-07-08KNF some comments and whitespace.skrll
2006-07-08Spelling in comments. No functional change.skrll