On Thu, Jul 22, 2010 at 11:44:35AM -0700, Greg KH wrote: > On Tue, Jul 13, 2010 at 12:28:02AM +0200, Roel Van Nyen wrote: > > Remove PUINT from ttype.h and change it to unsigned int * > > > > Signed-of-by Roel Van Nyen <roel.vannyen@xxxxxxxxx> > > --- > > Please run your patches through the scripts/checkpatch.pl script before > sending them to me. I can't add new warnings to the drivers, sorry. > > thanks, > > greg k-hi Hi Greg, I have re-done the patch, this time without any checkpatch.pl warnings. Remove PUINT from ttype.h Signed-off-by: Roel Van Nyen <roel.vannyen@xxxxxxxxx> --- drivers/staging/vt6656/bssdb.c | 4 ++-- drivers/staging/vt6656/bssdb.h | 4 ++-- drivers/staging/vt6656/dpc.c | 8 ++++---- drivers/staging/vt6656/ttype.h | 1 - 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/drivers/staging/vt6656/bssdb.c b/drivers/staging/vt6656/bssdb.c index 830dd23..4c604db 100644 --- a/drivers/staging/vt6656/bssdb.c +++ b/drivers/staging/vt6656/bssdb.c @@ -736,7 +736,7 @@ BOOL BSSbUpdateToBSSList(void *hDeviceContext, BOOL BSSbIsSTAInNodeDB(void *hDeviceContext, PBYTE abyDstAddr, - PUINT puNodeIndex) + unsigned int *puNodeIndex) { PSDevice pDevice = (PSDevice)hDeviceContext; PSMgmtObject pMgmt = &(pDevice->sMgmtObj); @@ -768,7 +768,7 @@ BOOL BSSbIsSTAInNodeDB(void *hDeviceContext, * None * -*/ -void BSSvCreateOneNode(void *hDeviceContext, PUINT puNodeIndex) +void BSSvCreateOneNode(void *hDeviceContext, unsigned int *puNodeIndex) { PSDevice pDevice = (PSDevice)hDeviceContext; diff --git a/drivers/staging/vt6656/bssdb.h b/drivers/staging/vt6656/bssdb.h index c3aaefe..f1bd38b 100644 --- a/drivers/staging/vt6656/bssdb.h +++ b/drivers/staging/vt6656/bssdb.h @@ -278,9 +278,9 @@ BOOL BSSbUpdateToBSSList(void *hDeviceContext, BOOL BSSbIsSTAInNodeDB(void *hDeviceContext, PBYTE abyDstAddr, - PUINT puNodeIndex); + unsigned int *puNodeIndex); -void BSSvCreateOneNode(void *hDeviceContext, PUINT puNodeIndex); +void BSSvCreateOneNode(void *hDeviceContext, unsigned int *puNodeIndex); void BSSvUpdateAPNode(void *hDeviceContext, PWORD pwCapInfo, diff --git a/drivers/staging/vt6656/dpc.c b/drivers/staging/vt6656/dpc.c index 81ce46f..4f7e778 100644 --- a/drivers/staging/vt6656/dpc.c +++ b/drivers/staging/vt6656/dpc.c @@ -80,7 +80,7 @@ static void s_vGetDASA( PBYTE pbyRxBufferAddr, - PUINT pcbHeaderSize, + unsigned int *pcbHeaderSize, PSEthernetHeader psEthHeader ); @@ -92,7 +92,7 @@ s_vProcessRxMACHeader ( unsigned int cbPacketSize, BOOL bIsWEP, BOOL bExtIV, - PUINT pcbHeadSize + unsigned int *pcbHeadSize ); static BOOL s_bAPModeRxCtl( @@ -167,7 +167,7 @@ s_vProcessRxMACHeader ( unsigned int cbPacketSize, BOOL bIsWEP, BOOL bExtIV, - PUINT pcbHeadSize + unsigned int *pcbHeadSize ) { PBYTE pbyRxBuffer; @@ -261,7 +261,7 @@ static void s_vGetDASA ( PBYTE pbyRxBufferAddr, - PUINT pcbHeaderSize, + unsigned int *pcbHeaderSize, PSEthernetHeader psEthHeader ) { diff --git a/drivers/staging/vt6656/ttype.h b/drivers/staging/vt6656/ttype.h index 3425773..fd78135 100644 --- a/drivers/staging/vt6656/ttype.h +++ b/drivers/staging/vt6656/ttype.h @@ -87,7 +87,6 @@ typedef unsigned long ULONG_PTR; // 32-bit typedef unsigned long DWORD_PTR; // 32-bit // boolean pointer -typedef unsigned int * PUINT; typedef BYTE * PBYTE; -- 1.7.0.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel