[media] drx-j: remove typedefs at drx_driver.c

Get rid of another typedef defined on this driver.

Acked-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Mauro Carvalho Chehab 2014-01-17 12:51:14 -03:00
parent b8cbcd354f
commit ab0db7e069
1 changed files with 4 additions and 5 deletions

View File

@ -117,7 +117,7 @@ GLOBAL VARIABLES
STRUCTURES STRUCTURES
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
/** \brief Structure of the microcode block headers */ /** \brief Structure of the microcode block headers */
typedef struct { struct drxu_code_block_hdr {
u32 addr; u32 addr;
/**< Destination address of the data in this block */ /**< Destination address of the data in this block */
u16 size; u16 size;
@ -129,8 +129,7 @@ typedef struct {
- bit[1]= compression on/off - bit[1]= compression on/off
- bit[15..2]=reserved */ - bit[15..2]=reserved */
u16 CRC;/**< CRC value of the data block, only valid if CRC flag is u16 CRC;/**< CRC value of the data block, only valid if CRC flag is
set. */ set. */};
} drxu_code_block_hdr_t, *pdrxu_code_block_hdr_t;
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
FUNCTIONS 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_version = 0;
DRX_ATTR_MCRECORD(demod).mc_base_version = 0; DRX_ATTR_MCRECORD(demod).mc_base_version = 0;
for (i = 0; i < mc_nr_of_blks; i++) { 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 */ /* Process block header */
block_hdr.addr = u_code_read32(mc_data); block_hdr.addr = u_code_read32(mc_data);
@ -1060,7 +1059,7 @@ ctrl_u_code(struct drx_demod_instance *demod,
/* Process microcode blocks */ /* Process microcode blocks */
for (i = 0; i < mc_nr_of_blks; i++) { 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; u16 mc_block_nr_bytes = 0;
/* Process block header */ /* Process block header */