summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/device.h
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2015-08-14 22:58:50 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-14 19:31:11 -0700
commit543828599afc9cdd9012e363c7393e5ed102aa2a (patch)
tree86b89717b9792dc85ff2ec27ca472c0f7de29cc2 /drivers/staging/vt6655/device.h
parent3a0989bb6cacb1f40273d4c397ea91cabe73bad8 (diff)
downloadop-kernel-dev-543828599afc9cdd9012e363c7393e5ed102aa2a.zip
op-kernel-dev-543828599afc9cdd9012e363c7393e5ed102aa2a.tar.gz
staging: vt6655: replace typedef struct tagDEVICE_TD_INFO and structure
Create struct vnt_td_info with members mic_hdr skb buf buf_dma dwReqCount -> req_count byFlags -> flags In struct tagSTxDesc volatile is removed because it will generate a warning (in any case this member is not) and renaming td_info. Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/device.h')
-rw-r--r--drivers/staging/vt6655/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
index 6aebb49..a31769a1 100644
--- a/drivers/staging/vt6655/device.h
+++ b/drivers/staging/vt6655/device.h
@@ -415,8 +415,8 @@ static inline PDEVICE_RD_INFO alloc_rd_info(void)
return kzalloc(sizeof(DEVICE_RD_INFO), GFP_ATOMIC);
}
-static inline PDEVICE_TD_INFO alloc_td_info(void)
+static inline struct vnt_td_info *alloc_td_info(void)
{
- return kzalloc(sizeof(DEVICE_TD_INFO), GFP_ATOMIC);
+ return kzalloc(sizeof(struct vnt_td_info), GFP_ATOMIC);
}
#endif
OpenPOWER on IntegriCloud