# HG changeset patch # User Lukasz Forynski # Date 1283701546 -3600 # Node ID 4dbffe5c974e25cbc32b3eae3b2ce4484f7e885e # Parent a1a318fd91af635bb4215f1eafa142963a8277c9 Bug 3665 - fix diff -r a1a318fd91af -r 4dbffe5c974e kernel/eka/include/drivers/iic_transaction.h --- a/kernel/eka/include/drivers/iic_transaction.h Fri Sep 03 14:54:26 2010 +0100 +++ b/kernel/eka/include/drivers/iic_transaction.h Sun Sep 05 16:45:46 2010 +0100 @@ -85,7 +85,8 @@ ESpiWordWidth_8, ESpiWordWidth_10, ESpiWordWidth_12, - ESpiWordWidth_16 + ESpiWordWidth_16, + ESpiWordWidth_32 }; /** diff -r a1a318fd91af -r 4dbffe5c974e kerneltest/e32test/iic/iic_psl/spi.cpp --- a/kerneltest/e32test/iic/iic_psl/spi.cpp Fri Sep 03 14:54:26 2010 +0100 +++ b/kerneltest/e32test/iic/iic_psl/spi.cpp Sun Sep 05 16:45:46 2010 +0100 @@ -242,7 +242,7 @@ // Valid values for the device ID will depend on the bus configuration // // Check that the values for word width, clock speed and clock mode are recognised - if((spiPtr->iWordWidth < 0) || (spiPtr->iWordWidth > ESpiWordWidth_16)) + if((spiPtr->iWordWidth < 0) || (spiPtr->iWordWidth > ESpiWordWidth_32)) { SPI_PRINT(("ERROR: DSimulatedIicBusChannelMasterSpi::CheckHdr unrecognised word width identifier %d\n",spiPtr->iWordWidth)); return KErrArgument; diff -r a1a318fd91af -r 4dbffe5c974e kerneltest/e32test/iic/t_iic.h --- a/kerneltest/e32test/iic/t_iic.h Fri Sep 03 14:54:26 2010 +0100 +++ b/kerneltest/e32test/iic/t_iic.h Sun Sep 05 16:45:46 2010 +0100 @@ -92,7 +92,8 @@ ESpiWordWidth_8, ESpiWordWidth_10, ESpiWordWidth_12, - ESpiWordWidth_16 + ESpiWordWidth_16, + ESpiWordWidth_32 }; enum TSpiClkMode