summaryrefslogtreecommitdiff
path: root/sys/dev/isa
AgeCommit message (Collapse)Author
2007-05-29It helps to commit removals from the tree that has the files cvs removedClaudio Jeker
instead of one where they where just empty. Figured out by art@
2007-05-29Stray reference in a comment to the dear departed wt.Kenneth R Westerback
2007-05-29Move tokenring support to the attic where it can join the cards that whereClaudio Jeker
decomissioned aeon ago. We will not miss it at all. OK dlg@ henning@ and a lot of cheers by other in the room
2007-05-28Delete wt code files. The end of wt(4).Kenneth R Westerback
2007-05-28Remove the Archive/Wangtek cartidge tape driver, wt(4). All tapes areKenneth R Westerback
st(4). ok tom@ deraadt@ jason@
2007-05-25"interupt" -> "interrupt" in various comments. Mostly from Diego Casati.Kenneth R Westerback
2007-05-19the thinkpad 60 models are in "state" 5.Ted Unangst
ok deraadt jasper jsg mk
2007-05-082nd one found: If you really wish to make a function __inline (which willTheo de Raadt
be called once), please also make it static so that the compiler does not generate a 2nd one to export to outside callers! that is a stupid waste of space.
2007-05-08old school media handling is no longer used; ok jsgTheo de Raadt
2007-05-04move bcd tables to the only place that uses them (the unused mcd driver);Theo de Raadt
ok miod
2007-04-29MCDUNIT/etc -> DISKUNIT/etc. No change to mcd.o.Kenneth R Westerback
2007-04-27Even floppies should use DISKLABELDEV() on the dev_t parameter toKenneth R Westerback
readdisklabel/writedisklabel. ok deraadt@ weingart@ conceptual ok drahn@
2007-04-10``it's'' -> ``its'' when the grammar gods require this change.Miod Vallat
2007-03-22split userland & kernel struct sensor/sensordev so that the additionTheo de Raadt
of new fields in the future is less disruptive. This is done similar to how struct proc is handled for ps(1). ok jmc (man page changes) tested fkr simon, and more suggestions from millert
2007-02-15Don't print the error strings returned by readdisklabel(). If youKenneth R Westerback
need the debug info uncomment the printf's you need. Crude but effective way to suppress 'no disklabel' errors that pop up at the most innconvenient times to frighten users. More elegant method, DPRINTF-like constructs or something, later. "Yay!" marco@ ok deraadt@
2007-02-14Consistently spell FALLTHROUGH to appease lint.Jonathan Gray
ok kettenis@ cloder@ tom@ henning@
2007-02-06Evil typo; spotted by Thorsten GlaserMiod Vallat
2007-01-07Replace infinite loops with appropriate constructs to fail operation if itMiod Vallat
takes much more time than it should.
2007-01-06Preliminary support for the hp300 single ISA slot found in 4xx `t' models.Miod Vallat
Everything works well but interrupts, where no two devices causes the frodo chip to behave in the same way... (polling will work nicely)
2007-01-05Don't pollute userspace with uneeded headers.Jonathan Gray
2007-01-05Remove unknown sensor that seems to always be fixed at 7Jonathan Gray
on all ThinkPad models.
2007-01-05Switch to indicator type for sensors with boolean values.Jonathan Gray
From Constantine A. Murenin
2007-01-05Change slightly to not need one of the softc members.Jonathan Gray
From Constantine A. Murenin
2006-12-29Avoid void * arithmetic, okay deraadt@, suggestions from millert@Pedro Martelletto
2006-12-23adapt to new two-level sensor api; Constantine A. MureninTheo de Raadt
2006-12-21'tranfer' -> 'transfer' in comments.Kenneth R Westerback
2006-12-02In alloc_attr(), make sure xxansitopc[] indicies are within bounds.Miod Vallat
2006-11-29Add an unpack_attr function to struct wsdisplay_emulops, to match theMiod Vallat
existing alloc_attr function. This allows rasops_unpack_attr to be kept private to rasops, yet available to the screen drivers.
2006-11-29Kernel stack can be swapped. This means that stuff that's on the stackMiod Vallat
should never be referenced outside the context of the process to which this stack belongs unless we do the PHOLD/PRELE dance. Loads of code doesn't follow the rules here. Instead of trying to track down all offenders and fix this hairy situation, it makes much more sense to not swap kernel stacks. From art@, tested by many some time ago.
2006-11-29Add a new member to struct wsemuldisplaydev_attach_args, for a frame bufferMiod Vallat
driver to be able to tell how many wscons screens to attach to it, instead of WSDISPLAY_DEFAULTSCREENS which is a global setting.
2006-11-28give scsi controllers a real attach args to fill in when attaching scsibus.David Gwynne
ok miod@ marco@ deraadt@
2006-10-20remove some NetBSD code.Brad Smith
2006-10-20ansiBrad Smith
2006-10-01fix dmesg line wrapping; this was fallout from shortening the ne(4) dmesgBrad Smith
printing. reported/tested by and okay nick@
2006-09-29If option PCDISPLAY_SOFTCURSOR, force the hardware cursor off every timeMiod Vallat
we switch vt, so that the hardware cursor does not reappear after starting X11, and switching to a text vt. Spotted by jmc@
2006-09-26Zap D_REMOVABLE flag from disklabel. If you didn't already know thatKenneth R Westerback
floppies and cd's were removable, displaying that fact in disklabel output was unlikely to help. And the display in disklabel was the only use of D_REMOVABLE in the tree. ok marco@
2006-08-26Remove ifdef/ifndef __OpenBSD__ maze so only what we use is left.Jonathan Gray
Convert to ansi function declarations while here. No binary change.
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-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-07-29Do not redefine ALIGNED_POINTER, it comes from <machine/param.h>Miod Vallat
2006-07-27Rework opl_find() so that it does not need to take a proto softc, shavesMiod Vallat
more than 2.5KB of stack for its callers (and even more on 64 bit arches).
2006-06-26Avoid using the rfact member of 'struct sensor' which is on its way out.Mark Kettenis
2006-06-26Avoid using the rfact member of 'struct sensor' which is on its way out.Mark Kettenis
tested by jmc@
2006-06-24Add abstraction for resistor factors and avoid using the rfact member ofMark Kettenis
'struct sensor' which is on its way out. tested by & ok jsg@
2006-06-19Do not bother initializing the rfact member of `struct sensor'; it is on itsMark Kettenis
way out anyway.
2006-06-17add sys/timeout.hBrad Smith
2006-06-01We do not create st devices with different density modes. i.e. with deviceKenneth R Westerback
minor numbers having bits 2 or 3 set. Eliminate the quirks, etc. used to store info on these non-existant modes. Also eliminate a couple of 'unimplemented' fields in the ioctl request structure. ok beck@ deraadt@
2006-05-22Attach routines can fail before calling *hook_establish(), and theyKenneth R Westerback
often rely on the detach routine for cleanup. So be consistant and careful by checking for a NULL hook before calling *hook_disestablish in detach routines. ok mickey@ brad@ dlg@
2006-05-11if (!foo & BAR) bad, if (!(foo & BAR)) better, and I'll have a cookie perMiod Vallat
file.
2006-04-27from PAE work:Michael Shalayeff
add a BUS_DMA_24BIT flag to signify that dmamap being created is for the isadma use (thus already backed up by the bounce buffers). later also to be used for dmamem allocation.