aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/crystalhd/crystalhd_lnx.h
diff options
context:
space:
mode:
authorLior Dotan <liodot@gmail.com>2010-05-18 05:46:42 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-18 17:53:17 -0400
commitabfc768d9e374dc30b98206aff99d790e36d06dd (patch)
treeb4c86ca1f65886bb8b44a9a51dfcf1c8f622f06b /drivers/staging/crystalhd/crystalhd_lnx.h
parent973267a212a6f28c26cbb7929a7ffdd963c16861 (diff)
Staging: crystalhd: Remove typedefs from driver
Remove typedefs from driver Signed-of-by: Lior Dotan <liodot@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/crystalhd/crystalhd_lnx.h')
-rw-r--r--drivers/staging/crystalhd/crystalhd_lnx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/crystalhd/crystalhd_lnx.h b/drivers/staging/crystalhd/crystalhd_lnx.h
index eee4926f04e..c951e43cbb3 100644
--- a/drivers/staging/crystalhd/crystalhd_lnx.h
+++ b/drivers/staging/crystalhd/crystalhd_lnx.h
@@ -79,12 +79,12 @@ struct crystalhd_adp {
79 unsigned int chd_dec_major; 79 unsigned int chd_dec_major;
80 unsigned int cfg_users; 80 unsigned int cfg_users;
81 81
82 crystalhd_ioctl_data *idata_free_head; /* ioctl data pool */ 82 struct crystalhd_ioctl_data *idata_free_head; /* ioctl data pool */
83 crystalhd_elem_t *elem_pool_head; /* Queue element pool */ 83 struct crystalhd_elem *elem_pool_head; /* Queue element pool */
84 84
85 struct crystalhd_cmd cmds; 85 struct crystalhd_cmd cmds;
86 86
87 crystalhd_dio_req *ua_map_free_head; 87 struct crystalhd_dio_req *ua_map_free_head;
88 struct pci_pool *fill_byte_pool; 88 struct pci_pool *fill_byte_pool;
89}; 89};
90 90