diff options
author | jhb <jhb@FreeBSD.org> | 2005-08-17 17:45:19 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-08-17 17:45:19 +0000 |
commit | cb9509b4ac17102f772323d173bc299119355e20 (patch) | |
tree | f8270aafc7ef7aff0c4d07ed8b0c3cd1bf2d9976 | |
parent | a4568a681a955ac44e06582271278340c6c64d59 (diff) | |
download | FreeBSD-src-cb9509b4ac17102f772323d173bc299119355e20.zip FreeBSD-src-cb9509b4ac17102f772323d173bc299119355e20.tar.gz |
Remove the unused TULIP_CSR_{READ,WRITE}BYTE macros.
-rw-r--r-- | sys/dev/de/if_devar.h | 9 | ||||
-rw-r--r-- | sys/pci/if_devar.h | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/sys/dev/de/if_devar.h b/sys/dev/de/if_devar.h index 46ff1ea..a801d41 100644 --- a/sys/dev/de/if_devar.h +++ b/sys/dev/de/if_devar.h @@ -45,15 +45,6 @@ typedef bus_addr_t tulip_csrptr_t; (sc)->tulip_csrs_bsh, \ (sc)->tulip_csrs.csr, val) -#define TULIP_CSR_READBYTE(sc, csr) \ - bus_space_read_1((sc)->tulip_csrs_bst, \ - (sc)->tulip_csrs_bsh, \ - (sc)->tulip_csrs.csr) -#define TULIP_CSR_WRITEBYTE(sc, csr, val) \ - bus_space_write_1((sc)->tulip_csrs_bst, \ - (sc)->tulip_csrs_bsh, \ - (sc)->tulip_csrs.csr, val) - /* * This structure contains "pointers" for the registers on * the various 21x4x chips. CSR0 through CSR8 are common diff --git a/sys/pci/if_devar.h b/sys/pci/if_devar.h index 46ff1ea..a801d41 100644 --- a/sys/pci/if_devar.h +++ b/sys/pci/if_devar.h @@ -45,15 +45,6 @@ typedef bus_addr_t tulip_csrptr_t; (sc)->tulip_csrs_bsh, \ (sc)->tulip_csrs.csr, val) -#define TULIP_CSR_READBYTE(sc, csr) \ - bus_space_read_1((sc)->tulip_csrs_bst, \ - (sc)->tulip_csrs_bsh, \ - (sc)->tulip_csrs.csr) -#define TULIP_CSR_WRITEBYTE(sc, csr, val) \ - bus_space_write_1((sc)->tulip_csrs_bst, \ - (sc)->tulip_csrs_bsh, \ - (sc)->tulip_csrs.csr, val) - /* * This structure contains "pointers" for the registers on * the various 21x4x chips. CSR0 through CSR8 are common |