diff options
author | kevlo <kevlo@FreeBSD.org> | 2006-07-25 01:08:41 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2006-07-25 01:08:41 +0000 |
commit | 9600c80b612b4367b040081e898d67b9f35beb7d (patch) | |
tree | 2679e649e691fd3f95b11a936e8bbeed5ef12206 | |
parent | 9b54b752dbcf56f7b8c44c7b8ecc9a38e83a71bd (diff) | |
download | FreeBSD-src-9600c80b612b4367b040081e898d67b9f35beb7d.zip FreeBSD-src-9600c80b612b4367b040081e898d67b9f35beb7d.tar.gz |
Cleanup.
Approved by: cognet
-rw-r--r-- | sys/arm/xscale/i80321/i80321.c | 17 | ||||
-rw-r--r-- | sys/arm/xscale/i80321/iq80321.c | 2 |
2 files changed, 1 insertions, 18 deletions
diff --git a/sys/arm/xscale/i80321/i80321.c b/sys/arm/xscale/i80321/i80321.c index dfd03a1..5b0d561 100644 --- a/sys/arm/xscale/i80321/i80321.c +++ b/sys/arm/xscale/i80321/i80321.c @@ -73,23 +73,6 @@ struct bus_space i80321_bs_tag; */ struct i80321_softc *i80321_softc; -/* Built-in devices. */ -static const struct iopxs_device { - const char *id_name; - bus_addr_t id_offset; - bus_size_t id_size; -} iopxs_devices[] = { - { "iopaau", VERDE_AAU_BASE, VERDE_AAU_SIZE }, -/* { "iopdma", VERDE_DMA_BASE0, VERDE_DMA_CHSIZE }, */ -/* { "iopdma", VERDE_DMA_BASE1, VERDE_DMA_CHSIZE }, */ - { "iopiic", VERDE_I2C_BASE0, VERDE_I2C_CHSIZE }, - { "iopiic", VERDE_I2C_BASE1, VERDE_I2C_CHSIZE }, -/* { "iopssp", VERDE_SSP_BASE, VERDE_SSP_SIZE }, */ - { "iopmu", VERDE_MU_BASE, VERDE_MU_SIZE }, - { "iopwdog", 0, 0 }, - { NULL, 0, 0 } -}; - #define PCI_MAPREG_MEM_ADDR(x) ((x) & 0xfffffff0) /* * i80321_attach: diff --git a/sys/arm/xscale/i80321/iq80321.c b/sys/arm/xscale/i80321/iq80321.c index 0331119..625ad1b 100644 --- a/sys/arm/xscale/i80321/iq80321.c +++ b/sys/arm/xscale/i80321/iq80321.c @@ -291,7 +291,7 @@ cpu_reset() (void) disable_interrupts(I32_bit|F32_bit); *(__volatile uint32_t *)(IQ80321_80321_VBASE + VERDE_ATU_BASE + ATU_PCSR) = PCSR_RIB | PCSR_RPB; - printf("Reset failed :'(\n"); + printf("Reset failed!\n"); for(;;); } |