History log of /netbsd/sys/dev/pci/if_ntwoc_pci.c (Results 1 – 25 of 32)
Revision Date Author Comments
# 887657bc 24-May-2022 andvar <andvar@NetBSD.org>

fix various typos in comments, docs and log messages.


# 79fb1406 09-Dec-2018 jdolecek <jdolecek@NetBSD.org>

use pci_intr_establish_xname() everywhere


# d619634b 14-Jul-2016 msaitoh <msaitoh@NetBSD.org>

- Use aprint*() more in xxx_attach().
- Add missing aprint_naive("\n").
- Remove extra spaces and tabs.
- KNF.


# b8930f84 29-Mar-2014 christos <christos@NetBSD.org>

make pci_intr_string and eisa_intr_string take a buffer and a length
instead of relying in local static storage.


# 5f819ca3 27-Oct-2012 chs <chs@NetBSD.org>

split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.


# 9d3c07c5 26-Jul-2011 dyoung <dyoung@NetBSD.org>

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

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)
)

show more ...


# 85cadc23 26-Nov-2009 njoly <njoly@NetBSD.org>

Cleanup interrupt establish error messages. Do not mix
aprint_error/aprint_normal/printf calls for a single line.


# b8169823 12-May-2009 cegger <cegger@NetBSD.org>

use device_private().
"looks good" ad@
XXX for the device_t/softc split, please check the driver that no cases have been missed.


# a591bc88 06-May-2009 cegger <cegger@NetBSD.org>

struct device * -> device_t, no functional changes intended.


# 59717d71 06-May-2009 cegger <cegger@NetBSD.org>

struct cfdata * -> cfdata_t, no functional changes intended.


# 454af1c0 14-Mar-2009 dsl <dsl@NetBSD.org>

Change about 4500 of the K&R function definitions to ANSI ones.
There are still about 1600 left, but they have ',' or /* ... */
in the actual variable definitions - which my awk script doesn't handle

Change about 4500 of the K&R function definitions to ANSI ones.
There are still about 1600 left, but they have ',' or /* ... */
in the actual variable definitions - which my awk script doesn't handle.
There are also many that need () -> (void).
(The script does handle misordered arguments.)

show more ...


# 9d57c800 10-Apr-2008 cegger <cegger@NetBSD.org>

use aprint_*_dev and device_xname


# a2a38285 19-Oct-2007 ad <ad@NetBSD.org>

machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h


# 168cd830 16-Nov-2006 christos <christos@NetBSD.org>

__unused removal on arguments; approved by core.


# 4d595fd7 12-Oct-2006 christos <christos@NetBSD.org>

- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386


# 2be6494f 29-Mar-2006 thorpej <thorpej@NetBSD.org>

Use device_cfdata().


# 95e1ffb1 11-Dec-2005 christos <christos@NetBSD.org>

merge ktrace-lwp.


# bb4c9007 30-May-2005 christos <christos@NetBSD.org>

- const poisoning
- avoid variable shadowing.


# 18db93c7 04-Feb-2005 perry <perry@NetBSD.org>

de-__P


# d88f7b1d 02-Nov-2003 wiz <wiz@NetBSD.org>

boundary, not boundry. Inspired by Tom Cosgrove.


# 1ffa7b76 03-May-2003 wiz <wiz@NetBSD.org>

DMA, not dma nor Dma.


# 276fd166 20-Jan-2003 simonb <simonb@NetBSD.org>

The Double-Semi-Colon Police.


# 7e681f70 06-Jan-2003 wiz <wiz@NetBSD.org>

interrupt with two rs.


# b75a007d 02-Oct-2002 thorpej <thorpej@NetBSD.org>

Add trailing ; to CFATTACH_DECL.


# 387fc6dc 30-Sep-2002 thorpej <thorpej@NetBSD.org>

Use CFATTACH_DECL().


12