some more fixes, eg. ppc405 support patch still wasn't completely applied

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@718 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Kolja Waschk 17 years ago
parent bc95795413
commit 5440ab2099

@ -37,6 +37,7 @@ libbus_a_SOURCES = \
mpc824x.c \
mpc5200.c \
ppc440gx_ebc8.c \
ppc440ep.c \
pxa2x0.c \
sa1110.c \
s3c4510x.c \

@ -329,6 +329,7 @@ const bus_driver_t au1500_bus = {
au1500_bus_read_next,
au1500_bus_read_end,
au1500_bus_read,
au1500_bus_write
au1500_bus_write,
NULL
};

@ -282,7 +282,8 @@ const bus_driver_t bcm1250_bus = {
bcm1250_bus_read_next,
bcm1250_bus_read_end,
bcm1250_bus_read,
bcm1250_bus_write
bcm1250_bus_write,
NULL
};
static bus_t *

@ -39,6 +39,7 @@ const bus_driver_t *bus_drivers[] = {
&mpc824x_bus,
&mpc5200_bus,
&ppc440gx_ebc8_bus,
&ppc405ep_bus,
&pxa2x0_bus,
&pxa27x_bus,
&s3c4510_bus,

@ -34,6 +34,7 @@ extern const bus_driver_t lh7a400_bus;
extern const bus_driver_t mpc824x_bus;
extern const bus_driver_t mpc5200_bus;
extern const bus_driver_t ppc440gx_ebc8_bus;
extern const bus_driver_t ppc405ep_bus;
extern const bus_driver_t pxa2x0_bus;
extern const bus_driver_t pxa27x_bus;
extern const bus_driver_t s3c4510_bus;

@ -713,5 +713,6 @@ const bus_driver_t jopcyc_bus = {
jopcyc_bus_read_next,
jopcyc_bus_read_end,
jopcyc_bus_read,
jopcyc_bus_write
jopcyc_bus_write,
NULL
};

@ -271,7 +271,8 @@ const bus_driver_t lh7a400_bus = {
lh7a400_bus_read_next,
lh7a400_bus_read_end,
lh7a400_bus_read,
lh7a400_bus_write
lh7a400_bus_write,
NULL
};
static bus_t *

@ -328,5 +328,6 @@ const bus_driver_t mpc5200_bus = {
mpc5200_bus_read_next,
mpc5200_bus_read_end,
mpc5200_bus_read,
mpc5200_bus_write
mpc5200_bus_write,
NULL
};

@ -228,7 +228,7 @@ const bus_driver_t ppc440gx_ebc8_bus = {
ppc440gx_ebc8_bus_read_next,
ppc440gx_ebc8_bus_read_end,
ppc440gx_ebc8_bus_read,
ppc440gx_ebc8_bus_write
ppc440gx_ebc8_bus_write,
};
static bus_t *

@ -484,9 +484,10 @@ const bus_driver_t slsup3_bus = {
slsup3_bus_printinfo,
slsup3_bus_prepare,
slsup3_bus_area,
slsup3_bus_read_start,
slsup3_bus_read_start,
slsup3_bus_read_next,
slsup3_bus_read_end,
slsup3_bus_read,
slsup3_bus_write
slsup3_bus_write,
NULL
};

@ -263,7 +263,8 @@ const bus_driver_t tx4925_bus = {
tx4925_bus_read_next,
tx4925_bus_read_end,
tx4925_bus_read,
tx4925_bus_write
tx4925_bus_write,
NULL
};

Loading…
Cancel
Save