Mercurial > ecos
changeset 1564:d8ce80bf8e90
* include/ppc8xx.h: Add definition for 8 bytes to spi_pram structure
(for a total of 48 bytes) as is done in the i2c_pram structure. Then
remove the equivalent 8 reserved bytes in the scc_pram structure
| author | asl |
|---|---|
| date | Mon, 05 Apr 2004 16:02:11 +0000 |
| parents | 4e2a59620a29 |
| children | 5c539c544148 |
| files | packages/hal/powerpc/quicc/current/ChangeLog packages/hal/powerpc/quicc/current/include/ppc8xx.h |
| diffstat | 2 files changed, 9 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/powerpc/quicc/current/ChangeLog +++ b/packages/hal/powerpc/quicc/current/ChangeLog @@ -1,3 +1,9 @@ +2004-04-01 Robert Chenault <robertchenault@yahoo.com> + + * include/ppc8xx.h: Add definition for 8 bytes to spi_pram structure + (for a total of 48 bytes) as is done in the i2c_pram structure. Then + remove the equivalent 8 reserved bytes in the scc_pram structure. + 2003-09-08 Gary Thomas <gary@mlbassoc.com> * src/quicc_smc1.c: Fix baud rate clock setup - was off by 1.
--- a/packages/hal/powerpc/quicc/current/include/ppc8xx.h +++ b/packages/hal/powerpc/quicc/current/include/ppc8xx.h @@ -348,7 +348,9 @@ struct spi_pram { unsigned long tptr; /* Tx internal data pointer */ unsigned short tbptr; /* Tx BD pointer */ unsigned short tcount; /* Tx byte count */ - unsigned long ttemp; /* Tx temp */ + unsigned long ttemp[2]; /* Tx temp */ + unsigned short rpbase; /* Relocated param block pointer */ + unsigned short res; /* unused */ }; struct smc_uart_pram { @@ -899,7 +901,6 @@ typedef struct eppc { } i2c_idma; struct { struct spi_pram spi; - unsigned char RSRVD57[0x8]; struct timer_pram timer; struct idma_pram idma2; } spi_timer_idma;
