mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 05:31:17 -04:00
staging: vt6656: removed custom pointer definitions
No checkpatch findings were resolved. sed -i 's/\bULONG_PTR\b/u32/g' drivers/staging/vt6656/*.[ch] sed -i 's/\bDWORD_PTR\b/u32/g' drivers/staging/vt6656/*.[ch] Signed-off-by: Andres More <more.andres@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
52a7e64b06
commit
1f9eedc2ad
@@ -430,7 +430,7 @@ int BSSbInsertToBSSList(struct vnt_private *pDevice,
|
||||
unsigned int uLen = pRSNWPA->len + 2;
|
||||
|
||||
if (uLen <= (uIELength -
|
||||
(unsigned int) (ULONG_PTR) ((u8 *) pRSNWPA - pbyIEs))) {
|
||||
(unsigned int) (u32) ((u8 *) pRSNWPA - pbyIEs))) {
|
||||
pBSSList->wWPALen = uLen;
|
||||
memcpy(pBSSList->byWPAIE, pRSNWPA, uLen);
|
||||
WPA_ParseRSN(pBSSList, pRSNWPA);
|
||||
@@ -443,7 +443,7 @@ int BSSbInsertToBSSList(struct vnt_private *pDevice,
|
||||
unsigned int uLen = pRSN->len + 2;
|
||||
|
||||
if (uLen <= (uIELength -
|
||||
(unsigned int) (ULONG_PTR) ((u8 *) pRSN - pbyIEs))) {
|
||||
(unsigned int) (u32) ((u8 *) pRSN - pbyIEs))) {
|
||||
pBSSList->wRSNLen = uLen;
|
||||
memcpy(pBSSList->byRSNIE, pRSN, uLen);
|
||||
WPA2vParseRSN(pBSSList, pRSN);
|
||||
@@ -592,7 +592,7 @@ int BSSbUpdateToBSSList(struct vnt_private *pDevice,
|
||||
if (pRSNWPA != NULL) {
|
||||
unsigned int uLen = pRSNWPA->len + 2;
|
||||
if (uLen <= (uIELength -
|
||||
(unsigned int) (ULONG_PTR) ((u8 *) pRSNWPA - pbyIEs))) {
|
||||
(unsigned int) (u32) ((u8 *) pRSNWPA - pbyIEs))) {
|
||||
pBSSList->wWPALen = uLen;
|
||||
memcpy(pBSSList->byWPAIE, pRSNWPA, uLen);
|
||||
WPA_ParseRSN(pBSSList, pRSNWPA);
|
||||
@@ -604,7 +604,7 @@ int BSSbUpdateToBSSList(struct vnt_private *pDevice,
|
||||
if (pRSN != NULL) {
|
||||
unsigned int uLen = pRSN->len + 2;
|
||||
if (uLen <= (uIELength -
|
||||
(unsigned int) (ULONG_PTR) ((u8 *) pRSN - pbyIEs))) {
|
||||
(unsigned int) (u32) ((u8 *) pRSN - pbyIEs))) {
|
||||
pBSSList->wRSNLen = uLen;
|
||||
memcpy(pBSSList->byRSNIE, pRSN, uLen);
|
||||
WPA2vParseRSN(pBSSList, pRSN);
|
||||
|
||||
@@ -37,9 +37,6 @@
|
||||
|
||||
/****** Common pointer types ***********************************************/
|
||||
|
||||
typedef u32 ULONG_PTR;
|
||||
typedef u32 DWORD_PTR;
|
||||
|
||||
// boolean pointer
|
||||
|
||||
#endif /* __TTYPE_H__ */
|
||||
|
||||
Reference in New Issue
Block a user