diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2015-08-15 21:57:35 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-12 18:24:26 -0700 |
commit | 9cb693f6f326ddf8f9df9c2bb3302048a919b394 (patch) | |
tree | e81128deac3d808d539e9960f9484714e7426a73 /drivers/staging/vt6655/dpc.h | |
parent | 88defe2b35f1b765dbfe9a800c443c31400a4e13 (diff) |
staging: vt6655: replace typedef struct tagSRxDesc
with struct vnt_rx_desc and all members the same.
volatile is removed from pointers as this generates warning
message.
Only the first four members of vnt_rx_desc need to be volatile.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/dpc.h')
-rw-r--r-- | drivers/staging/vt6655/dpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vt6655/dpc.h b/drivers/staging/vt6655/dpc.h index ad495719a251..e80b30816968 100644 --- a/drivers/staging/vt6655/dpc.h +++ b/drivers/staging/vt6655/dpc.h @@ -31,6 +31,6 @@ #include "device.h" -bool vnt_receive_frame(struct vnt_private *priv, PSRxDesc curr_rd); +bool vnt_receive_frame(struct vnt_private *priv, struct vnt_rx_desc *curr_rd); #endif /* __RXTX_H__ */ |