Get rid of another typedef defined on this driver.

Signed-off-by: Mauro Carvalho Chehab <m.che...@samsung.com>
---
 drivers/media/dvb-frontends/drx39xyj/drx_driver.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/media/dvb-frontends/drx39xyj/drx_driver.c 
b/drivers/media/dvb-frontends/drx39xyj/drx_driver.c
index 34bc76c644b9..9eb4bbf2627a 100644
--- a/drivers/media/dvb-frontends/drx39xyj/drx_driver.c
+++ b/drivers/media/dvb-frontends/drx39xyj/drx_driver.c
@@ -117,7 +117,7 @@ GLOBAL VARIABLES
 STRUCTURES
 
------------------------------------------------------------------------------*/
 /** \brief  Structure of the microcode block headers */
-typedef struct {
+struct drxu_code_block_hdr {
        u32 addr;
                  /**<  Destination address of the data in this block */
        u16 size;
@@ -129,8 +129,7 @@ typedef struct {
                        - bit[1]= compression on/off
                        - bit[15..2]=reserved */
        u16 CRC;/**<  CRC value of the data block, only valid if CRC flag is
-                       set. */
-} drxu_code_block_hdr_t, *pdrxu_code_block_hdr_t;
+                       set. */};
 
 
/*------------------------------------------------------------------------------
 FUNCTIONS
@@ -1015,7 +1014,7 @@ ctrl_u_code(struct drx_demod_instance *demod,
                DRX_ATTR_MCRECORD(demod).mc_version = 0;
                DRX_ATTR_MCRECORD(demod).mc_base_version = 0;
                for (i = 0; i < mc_nr_of_blks; i++) {
-                       drxu_code_block_hdr_t block_hdr;
+                       struct drxu_code_block_hdr block_hdr;
 
                        /* Process block header */
                        block_hdr.addr = u_code_read32(mc_data);
@@ -1060,7 +1059,7 @@ ctrl_u_code(struct drx_demod_instance *demod,
 
        /* Process microcode blocks */
        for (i = 0; i < mc_nr_of_blks; i++) {
-               drxu_code_block_hdr_t block_hdr;
+               struct drxu_code_block_hdr block_hdr;
                u16 mc_block_nr_bytes = 0;
 
                /* Process block header */
-- 
1.8.5.3

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to