Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.18.2.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:48 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.18: +7 -9
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
sync with head
Revision 1.18.6.2 / (download) - annotate - [select for diffs], Fri Feb 24 09:11:41 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.18.6.1: +5 -4
lines
Diff to previous 1.18.6.1 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)
sync to -current.
Revision 1.20 / (download) - annotate - [select for diffs], Sat Feb 18 13:38:36 2012 UTC (3 months ago) by drochner
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
HEAD
Changes since 1.19: +5 -4
lines
Diff to previous 1.19 (colored)
split device_t/softc
Revision 1.18.6.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:41 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.18: +4 -7
lines
Diff to previous 1.18 (colored)
merge to -current.
Revision 1.19 / (download) - annotate - [select for diffs], Mon Jan 30 19:41:20 2012 UTC (3 months, 3 weeks ago) by drochner
Branch: MAIN
CVS Tags: netbsd-6-base,
netbsd-6,
jmcneill-usbmp-base2
Changes since 1.18: +4 -7
lines
Diff to previous 1.18 (colored)
Use pci_aprint_devinfo(9) instead of pci_devinfo+aprint_{normal,naive}
where it looks straightforward, and pci_aprint_devinfo_fancy in a few
others where drivers want to supply their own device names instead
of the pcidevs generated one. More complicated cases, where names
are composed at runtime, are left alone for now. It certainly makes
sense to simplify the drivers here rather than inventing a catch-all API.
This should serve as as example for new drivers, and also ensure
consistent output in the AB_QUIET ("boot -q") case. Also, it avoids
excessive stack usage where drivers attach child devices because the
buffer for the device name is not kept on the local stack anymore.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Jul 26 20:51:24 2011 UTC (10 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base,
jmcneill-audiomp3-base,
jmcneill-audiomp3
Branch point for: yamt-pagecache,
jmcneill-usbmp
Changes since 1.17: +3 -3
lines
Diff to previous 1.17 (colored)
Replace anonymous constants, 0x10, 0x14, ..., with PCI_BAR(0), PCI_BAR(1), .... There was no change in the generated assembly. I used this semantic patch: @ mapsit @ identifier bar; expression pact; @@ ( pci_mapreg_map | Cardbus_mapreg_map )(pact, bar, ...) @ depends on mapsit @ identifier mapsit.bar; @@ ( - #define bar 0x10 + #define bar PCI_BAR(0) | - #define bar 0x14 + #define bar PCI_BAR(1) | - #define bar 0x18 + #define bar PCI_BAR(2) | - #define bar 0x1C + #define bar PCI_BAR(3) | - #define bar 0x20 + #define bar PCI_BAR(4) )
Revision 1.15.6.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:08:15 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.15: +3 -4
lines
Diff to previous 1.15 (colored) next main 1.16 (colored)
Sync with HEAD.
Revision 1.15.4.1 / (download) - annotate - [select for diffs], Tue May 31 03:04:40 2011 UTC (11 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.15: +3 -4
lines
Diff to previous 1.15 (colored) next main 1.16 (colored)
sync with head
Revision 1.17 / (download) - annotate - [select for diffs], Tue May 10 23:48:33 2011 UTC (12 months, 2 weeks ago) by dyoung
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase,
rmind-uvmplock-base,
cherry-xenmp-base,
cherry-xenmp
Changes since 1.16: +3 -3
lines
Diff to previous 1.16 (colored)
Constify pci_attach_args.
Revision 1.16 / (download) - annotate - [select for diffs], Tue May 10 18:31:33 2011 UTC (12 months, 2 weeks ago) by dyoung
Branch: MAIN
Changes since 1.15: +2 -3
lines
Diff to previous 1.15 (colored)
Stop abuse of PCI_FLAGS_IO_ENABLED and PCI_FLAGS_MEM_ENABLED. The flags specifically tell a driver that bridges upstream forward PCI I/O (or memory) transactions to the device." Only bus drivers have any business modifying these.
Revision 1.8.4.4 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:47 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.8.4.3: +3 -4
lines
Diff to previous 1.8.4.3 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)
sync with head
Revision 1.15 / (download) - annotate - [select for diffs], Tue Jan 19 22:07:01 2010 UTC (2 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
uebayasi-xip,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: rmind-uvmplock,
jruoho-x86intr
Changes since 1.14: +2 -3
lines
Diff to previous 1.14 (colored)
Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump.
Revision 1.14 / (download) - annotate - [select for diffs], Thu Nov 26 15:17:09 2009 UTC (2 years, 5 months ago) by njoly
Branch: MAIN
CVS Tags: matt-premerge-20091211
Changes since 1.13: +3 -3
lines
Diff to previous 1.13 (colored)
Cleanup interrupt establish error messages. Do not mix aprint_error/aprint_normal/printf calls for a single line.
Revision 1.8.4.3 / (download) - annotate - [select for diffs], Wed Aug 19 18:47:11 2009 UTC (2 years, 9 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.8.4.2: +3 -2
lines
Diff to previous 1.8.4.2 (colored) to branchpoint 1.8 (colored)
sync with head.
Revision 1.13 / (download) - annotate - [select for diffs], Sat Aug 8 20:44:36 2009 UTC (2 years, 9 months ago) by matt
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
jym-xensuspend-nbase
Changes since 1.12: +3 -2
lines
Diff to previous 1.12 (colored)
If we've had to enable MEM access, make sure our flags reflect that so that pci_mapreg_map won't fail because it didn't know we did it.
Revision 1.8.4.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:35 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.8.4.1: +10 -10
lines
Diff to previous 1.8.4.1 (colored) to branchpoint 1.8 (colored)
sync with head
Revision 1.9.14.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:26 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.9: +10 -10
lines
Diff to previous 1.9 (colored) next main 1.10 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.12 / (download) - annotate - [select for diffs], Tue May 12 08:23:01 2009 UTC (3 years ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
jymxensuspend-base,
jym-xensuspend-base
Changes since 1.11: +4 -4
lines
Diff to previous 1.11 (colored)
use device_private(). "looks good" ad@ XXX for the device_t/softc split, please check the driver that no cases have been missed.
Revision 1.11 / (download) - annotate - [select for diffs], Wed May 6 10:34:32 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.10: +8 -8
lines
Diff to previous 1.10 (colored)
struct device * -> device_t, no functional changes intended.
Revision 1.10 / (download) - annotate - [select for diffs], Wed May 6 09:25:16 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.9: +4 -4
lines
Diff to previous 1.9 (colored)
struct cfdata * -> cfdata_t, no functional changes intended.
Revision 1.7.16.1 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:40 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.7: +4 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
Sync with HEAD.
Revision 1.8.2.1 / (download) - annotate - [select for diffs], Sun May 18 12:34:20 2008 UTC (4 years ago) by yamt
Branch: yamt-pf42
Changes since 1.8: +3 -2
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
sync with head.
Revision 1.8.4.1 / (download) - annotate - [select for diffs], Fri May 16 02:24:43 2008 UTC (4 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.8: +3 -2
lines
Diff to previous 1.8 (colored)
sync with head.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Apr 29 22:21:45 2008 UTC (4 years ago) by scw
Branch: MAIN
CVS Tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-nfs-mp-base3,
yamt-nfs-mp-base2,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
nick-hppapmap,
netbsd-5-base,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
mjf-devfs2-base,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
hpcarm-cleanup-nbase,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
ad-audiomp2-base,
ad-audiomp2
Branch point for: jym-xensuspend
Changes since 1.8: +3 -2
lines
Diff to previous 1.8 (colored)
Pull in some more changes from OpenBSD: - replace rssadapt(9) with amrr for automatic rate control. - don't blindly IFQ_DEQUEUE() then drop a Tx packet if there are no available Tx resources. - move default MAC/BBP/RF settings from rt2661.c to rt2661reg.h. - enable packet bursting when operating as a STA. - implement new ic_updateslot() callback. - in hostap mode, we defer update of the slot time until all associated STAs are notified with updated beacons. - 802.11a uses a 16 microseconds short interframe space. - Fix rt2661_set_macaddr() so that we don't override the "unicast to me" flag in RT2661_MAC_CSR3 when setting the MAC address. - fix index of ERP information element in beacons. Add a couple of tweaks of my own: - The RX/TX BUSY flag should be the last thing written to a descriptor. - Check and service any additional h/w interrupts before returning from the isr. Tested in STA, AP, and Monitor modes. Tested with WEP, WPA, and WPA2 crypto. Additional testing by xtraeme@
Revision 1.8 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:37 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base,
yamt-nfs-mp-base
Branch point for: yamt-pf42,
yamt-nfs-mp
Changes since 1.7: +3 -3
lines
Diff to previous 1.7 (colored)
use aprint_*_dev and device_xname
Revision 1.6.24.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:29:04 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
sync with HEAD
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:59 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.2.2.2: +4 -4
lines
Diff to previous 1.2.2.2 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head.
Revision 1.6.22.1 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:16 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
Sync with HEAD. Follow the merge of pmap.c on i386 and amd64 and move pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup code to restore CR4 before jumping back into kernel space as the large page option might cover that.
Revision 1.6.28.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:39:03 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
Sync with HEAD.
Revision 1.6.8.1 / (download) - annotate - [select for diffs], Tue Oct 23 20:09:00 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored) next main 1.7 (colored)
Sync with head.
Revision 1.7 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:47 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
vmlocking2-base3,
vmlocking2-base2,
vmlocking2-base1,
vmlocking2,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
mjf-devfs,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
jmcneill-pm-base,
jmcneill-base,
hpcarm-cleanup-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
ad-socklock-base1
Branch point for: mjf-devfs2
Changes since 1.6: +4 -4
lines
Diff to previous 1.6 (colored)
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:45 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.2.2.1: +4 -3
lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored)
sync with head.
Revision 1.4.8.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:44 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.4.8.1: +5 -5
lines
Diff to previous 1.4.8.1 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)
sync with head.
Revision 1.4.6.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:30 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.4: +4 -3
lines
Diff to previous 1.4 (colored) next main 1.5 (colored)
Sync with head.
Revision 1.6 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:09 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
vmlocking-base,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
post-newlock2-merge,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup,
ad-audiomp-base,
ad-audiomp
Branch point for: vmlocking,
matt-armv6,
jmcneill-pm,
bouyer-xenamd64
Changes since 1.5: +5 -5
lines
Diff to previous 1.5 (colored)
__unused removal on arguments; approved by core.
Revision 1.4.8.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:17 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.4: +6 -5
lines
Diff to previous 1.4 (colored)
sync with head
Revision 1.5 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:30 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.4: +6 -5
lines
Diff to previous 1.4 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.3.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:17 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.3: +66 -25
lines
Diff to previous 1.3 (colored) next main 1.4 (colored)
sync with head
Revision 1.3.8.1 / (download) - annotate - [select for diffs], Mon Jun 26 12:51:21 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.3: +66 -25
lines
Diff to previous 1.3 (colored) next main 1.4 (colored)
sync with head.
Revision 1.2.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:04 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.2: +66 -25
lines
Diff to previous 1.2 (colored)
sync with head.
Revision 1.3.14.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:36 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.3: +66 -25
lines
Diff to previous 1.3 (colored) next main 1.4 (colored)
Sync with head.
Revision 1.3.6.1 / (download) - annotate - [select for diffs], Wed Jun 7 15:51:09 2006 UTC (5 years, 11 months ago) by kardel
Branch: simonb-timecounters
Changes since 1.3: +66 -25
lines
Diff to previous 1.3 (colored) next main 1.4 (colored)
Sync with head.
Revision 1.4 / (download) - annotate - [select for diffs], Tue Jun 6 21:00:41 2006 UTC (5 years, 11 months ago) by rpaulo
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
gdamore-uart-base,
gdamore-uart,
chap-midi-nbase,
chap-midi-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.3: +66 -25
lines
Diff to previous 1.3 (colored)
Attachment framework for the rt2561.c and rt2661.c drivers. From OpenBSD.
Revision 1.3 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:49 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
simonb-timcounters-final,
peter-altq-base,
peter-altq,
elad-kernelauth-base,
elad-kernelauth
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
chap-midi
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
merge ktrace-lwp.
Revision 1.2.8.2 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:01 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.8.1: +148 -0
lines
Diff to previous 1.2.8.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
Sync with HEAD. Here we go again...
Revision 1.2.8.1, Mon Jul 4 17:50:10 2005 UTC (6 years, 10 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2: +0 -148
lines
FILE REMOVED
file if_ral_pci.c was added on branch ktrace-lwp on 2005-11-10 14:06:01 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Mon Jul 4 17:50:10 2005 UTC (6 years, 10 months ago) by drochner
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
ktrace-lwp-base
Branch point for: yamt-lazymbuf,
ktrace-lwp
Changes since 1.1: +3 -3
lines
Diff to previous 1.1 (colored)
update PCI/Cardbus ral wlan driver, and adapt to new FreeBSD/NetBSD 80211 framework, from FUKAUMI Naoki per mail to tech-net
Revision 1.1 / (download) - annotate - [select for diffs], Fri Jul 1 20:06:56 2005 UTC (6 years, 10 months ago) by drochner
Branch: MAIN
add drivers for Ralink RT2500-based wireless adapters, written by Damien Bergamini, ported and submitted by FUKAUMI Naoki per PR kern/30449 I've modified the USB "ural" driver for recent changes to the NetBSD ieee80211 framework, possibly not completely, but with an ASUS wireless adapter I'm getting some signs of life. Didn't care about pci/cardbus for now, hopefully someone with hardware will do it.