| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2006-09-03 | add missing decl | christos | |
| 2006-09-03 | add missing decl. | christos | |
| 2006-09-03 | - comment out impossible comparisons | christos | |
| - remove superfluous if statement | |||
| 2006-09-03 | - add missing initializer | christos | |
| - correct function decl. | |||
| 2006-09-03 | avoid empty if statements | christos | |
| 2006-09-02 | add missing initializers | christos | |
| 2006-09-02 | Remove unused variable to make this build again. | xtraeme | |
| 2006-09-02 | - fix incomplete initializer | christos | |
| - static goes first | |||
| 2006-09-02 | comment out impossible code | christos | |
| 2006-09-02 | Add missing initializer | christos | |
| 2006-08-31 | Per discussion on tech-kern and tech-userlevel, move the bit-twiddling | dyoung | |
| 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-30 | Phobos boards (my G130 at least) have a non-standard srom layout. Try to | rumble | |
| identify it and pull out the enaddr. | |||
| 2006-08-30 | fix initializers. | christos | |
| 2006-08-30 | add missing initializer | christos | |
| 2006-08-30 | fix incomplete initializer | christos | |
| 2006-08-28 | Remove unused variable 'periph' to make this build. | xtraeme | |
| 2006-08-28 | add missing initializer | christos | |
| 2006-08-27 | typo | christos | |
| 2006-08-27 | ifdef out unreachable code. | christos | |
| 2006-08-27 | complete declarations | christos | |
| 2006-08-27 | Revert 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-27 | Fix typo | christos | |
| 2006-08-27 | Use symbolic names for CSR values after reset. | bjh21 | |
| 2006-08-26 | When receiving a SCSI message, it's important not to deassert ACK on the last | bjh21 | |
| 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-26 | Use standard MSG_IS1BYTE, MSG_IS2BYTE, and MSG_ISEXTENDED macros rather | bjh21 | |
| than rolling our own. | |||
| 2006-08-26 | Use the 'z' size modifier when printfing size_t, so that GCC doesn't complain | bjh21 | |
| on systems were size_t isn't unsigned int. | |||
| 2006-08-26 | Move the sgimips "sbic" driver from arch/sgimips/hpc/sbic.c to | bjh21 | |
| 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-23 | Acting 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-23 | implement auto-detection of volume resolutions | kent | |
| 2006-08-18 | G/c unnecessary includes. | uwe | |
| 2006-08-17 | Fix all the -D*DEBUG* code that it was rotting away and did not even compile. | christos | |
| Mostly from Arnaud Lacombe, many thanks! | |||
| 2006-08-16 | 2nd try. Fix errors (hopefully) that prevented this from compiling. This | gdamore | |
| 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-13 | Provide a method for other display drivers to ask vga to free resources | jmcneill | |
| 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-12 | Avoid gcc4 warnings; voice is unsigned so no need to check "voice < 0". | nakayama | |
| 2006-08-08 | fix a GCC uninitialised variable warning only seen at -O3. | mrg | |
| 2006-08-05 | 1st cut of Powermac G5 support (uses bridge mode). | sanjayl | |
| 2006-07-26 | add 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-22 | Remove unused variable to make it compile again. | martin | |
| 2006-07-22 | oops, no 'p' here. from xtraeme@. | elad | |
| 2006-07-22 | don'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-17 | remove lhs cast for gcc4 | christos | |
| 2006-07-14 | Consistently establish / disestablish shutdown hook | seanb | |
| 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-13 | Add 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-12 | Note this driver is for the i82596CA and i82596DX/SX chips and provide | skrll | |
| links to documentation on developers.intel.com | |||
| 2006-07-11 | Add power hooks for "ep* at pcmcia?". | peter | |
| ok christos@ | |||
| 2006-07-11 | Add power hooks for "ne* at pcmcia?". | peter | |
| ok christos@ | |||
| 2006-07-08 | KNF some comments and whitespace. | skrll | |
| 2006-07-08 | Spelling in comments. No functional change. | skrll | |
