| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
rollover resulting in duplicate keypress events.
PR: 57273
PR: 63171
Submitted by: plasma <plasma at freebsd.sinica.edu.tw>
Submitted by: Brian Candler <B.Candler at pobox.com>
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
Introduce d_version field in struct cdevsw, this must always be
initialized to D_VERSION.
Flip sense of D_NOGIANT flag to D_NEEDGIANT, this involves removing
four D_NOGIANT flags and adding 145 D_NEEDGIANT flags.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add missing D_TTY flags to various drivers.
Complete asserts that dev_t's passed to ttyread(), ttywrite(),
ttypoll() and ttykqwrite() have (d_flags & D_TTY) and a struct tty
pointer.
Make ttyread(), ttywrite(), ttypoll() and ttykqwrite() the default
cdevsw methods for D_TTY drivers and remove the explicit initializations
in various drivers cdevsw structures.
|
|
|
|
|
|
|
| |
Free approx 86 major numbers with a mostly automatically generated patch.
A number of strategic drivers have been left behind by caution, and a few
because they still (ab)use their major number.
|
|
|
|
|
| |
PR: kern/63041
MFC after: 3 days
|
| |
|
| |
|
|
|
|
|
|
|
| |
netbsd.org -> NetBSD.org(rev.1.109)
fix typo in comment(rev.1.90)
add list of ``already merged''
|
| |
|
|
|
|
|
|
|
| |
1220U and supported by sane
# someone should update the man page to include all the devices that
# uscanner supports.
|
| |
|
|
|
|
|
|
|
|
|
| |
For some very unclear reason this device contains a FTDI 8U232AM USB->COM
adapter, but reports different device id than original 8U232AM. At the same
time, it reports vendor id of FTDI.
Sponsored by: Porta Software Ltd
MFC after: 2 weeks
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- 2nd type of GL641USB USB-IDE bridge [1]
- Plextor Plexwriter 40/12/40U [2]
PR: kern/61671 [1]
kern/61803 [2]
Submitted by: Ralf Wenk <RZ-FreeBSD0401@fh-karlsruhe.de> [1]
Feisal Mohammed <feisal@uwi.tt> [2]
MFC after: 1 week
|
| |
|
|
|
|
|
|
| |
PR: kern/61578
Submitted by: Masaharu FUJITA <m@fjts.org>
MFC after: 1 week
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
ubd_devinfo_vp() is getting an empty string from its usbd_get_string()
call on the vendor, instead of NULL. This means usb_knowndevs in not
consulted.
Add lines between grabbing those char *s and the USBVERBOSE ifdef to
set vendor to NULL if it is the empty string (similarly for product).
This causes vendor to be filled-out, although the product name read
overrules usb_knowndevs (this appears to be a conscience decision made
by the NetBSD folks):
PR: kern/56097
Submitted by: Hal Burch <hburch@lumeta.com>
MFC after: 1 week
|
|
|
|
|
|
|
|
| |
(NetBSD src/sys/dev/usb/umass.c rev.1.67)
PR: kern/58649 (Problem 1)
Submitted by: SAKIYAMA Nobuo <sakichan@sakichan.org>
MFC after: 1 week
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Submitted by: TAKAHASHI Daisuke <takaha@mue.biglobe.ne.jp> [FreeBSD-users-jp 72475]
and MIZUTANI Masaki <m-saki@rr.iij4u.or.jp>
MFC after: 1 week
|
|
|
|
|
| |
Submitted by: Sean Welch <welchsm@earthlink.net>
MFC after: 1 week
|
| |
|
| |
|
| |
|
|
|
|
| |
Submitted by: MIYAO Akio <miyao@affrc.go.jp>
|
| |
|
|
|
|
|
|
|
|
|
| |
[1] EMS PSX Gun controller converter
[2] CSR USB Bluetooth Device
PR: kern/60378 [1]
Submitted by: Samuel Tardieu <sam@rfc1149.net> [1]
<jps@scxnet.de> [2]
|
|
|
|
| |
Submitted by: Hiroaki Satoh <hsato@iwate-u.ac.jp> [FreeBSD-users-jp 76073]
|
| |
|
|
|
|
| |
Submitted by: <schley@cf-wnd.de>
|
|
|
|
|
| |
PR: kern/60389
Submitted by: Sang Woo Shim <ssw@swoo.org>
|
|
|
|
|
|
|
|
| |
unmodified for ATAPI type devices with ports/sysutils/cdrtools.
(But we need timeout routine which was in kern/58649 for fixate, I think.)
PR: kern/58649
Submitted by: SAKIYAMA Nobuo <sakichan@sakichan.org>
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Canon USB Scanner N676U [1]
- Canon USB Scanner N1220U [2]
PR: misc/40280 [1]
Submitted by: [1] Yasue Koichi / StarRing <starring@fscn.ne.jp>
[2] MIYAO Akio <miyao@affrc.go.jp> [FreeBSD-users-jp 74516]
|
| |
|
|
|
|
|
|
|
| |
Regen.
Reviewed by: imp (mentor)
Approved by: imp (mentor)
|
| |
|
|
|
|
|
|
|
|
|
| |
broken BIOS. Separate ohci_controller_init() from ohci_init(),
and call ohci_controller_init() at resume process once more.
Discussed on [bsd-nomads:16737] - [bsd-nomads:16746].
Submitted by Hiroyuki Aizu <eyes@navi.org> [bsd-nomads:16741]
|
|
|
|
|
|
|
|
|
|
| |
methods for USB devices in the same way of uhci driver. But this change
is not complete because some ohci controlers are not initialized completely.
So "kernel: usb0: 1 scheduling overruns" interrupt will generate many times.
This change will be same one in PR kern/60099.
Discussed on [bsd-nomads:16737] - [bsd-nomads:16746].
|
| |
|
|
|
|
| |
Submitted by: OISHI Masakuni <yamasa@bsdhouse.org> [FreeBSD-users-jp 77672]
|
|
|
|
| |
Submitted by: OISHI Masakuni <yamasa@bsdhouse.org> [FreeBSD-users-jp 77672]
|
| |
|
|
|
|
|
| |
PR: kern/57050
Submitted by: Brian J. McGovern <mcgovern@beta.com>
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- PNY Attache Flash Drive [1]
- minolta 5400 USB scanner [2]
PR: kern/58045 [1]
kern/56496 [2]
Submitted by: [1] Rick C. Petty <rick@kiwi-computer.com>
[2] Mark Diekhans <markd@kermodei.com>
|
| |
|
|
|
|
| |
the usbdevs command.
|