Staging: dt3155: remove unused 32-bit and 8-bit global registers
All of the board 32-bit registers and 8-bit i2c registers are either read before writing to them or they are just written to with a new value. There is no reason to keep a 'local' copy of any of them. As a first step to removing them, get rid of all the ones that are not used in the driver. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Scott Smedley <ss@aao.gov.au> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
7d0f940ee0
commit
12513b76a0
|
@ -33,25 +33,12 @@ u32 even_dma_start_r; /* bit 0 should always be 0 */
|
|||
u32 odd_dma_start_r; /* .. */
|
||||
u32 even_dma_stride_r; /* bits 0&1 should always be 0 */
|
||||
u32 odd_dma_stride_r; /* .. */
|
||||
u32 even_pixel_fmt_r;
|
||||
u32 odd_pixel_fmt_r;
|
||||
|
||||
FIFO_TRIGGER_R fifo_trigger_r;
|
||||
XFER_MODE_R xfer_mode_r;
|
||||
CSR1_R csr1_r;
|
||||
RETRY_WAIT_CNT_R retry_wait_cnt_r;
|
||||
INT_CSR_R int_csr_r;
|
||||
|
||||
u32 even_fld_mask_r;
|
||||
u32 odd_fld_mask_r;
|
||||
|
||||
MASK_LENGTH_R mask_length_r;
|
||||
FIFO_FLAG_CNT_R fifo_flag_cnt_r;
|
||||
IIC_CLK_DUR_R iic_clk_dur_r;
|
||||
IIC_CSR1_R iic_csr1_r;
|
||||
IIC_CSR2_R iic_csr2_r;
|
||||
DMA_UPPER_LMT_R even_dma_upper_lmt_r;
|
||||
DMA_UPPER_LMT_R odd_dma_upper_lmt_r;
|
||||
|
||||
|
||||
|
||||
|
@ -59,18 +46,6 @@ DMA_UPPER_LMT_R odd_dma_upper_lmt_r;
|
|||
I2C_CSR2 i2c_csr2;
|
||||
I2C_EVEN_CSR i2c_even_csr;
|
||||
I2C_ODD_CSR i2c_odd_csr;
|
||||
I2C_CONFIG i2c_config;
|
||||
u8 i2c_dt_id;
|
||||
u8 i2c_x_clip_start;
|
||||
u8 i2c_y_clip_start;
|
||||
u8 i2c_x_clip_end;
|
||||
u8 i2c_y_clip_end;
|
||||
u8 i2c_ad_addr;
|
||||
u8 i2c_ad_lut;
|
||||
I2C_AD_CMD i2c_ad_cmd;
|
||||
u8 i2c_dig_out;
|
||||
u8 i2c_pm_lut_addr;
|
||||
u8 i2c_pm_lut_data;
|
||||
|
||||
/*
|
||||
* wait_ibsyclr()
|
||||
|
|
|
@ -213,25 +213,12 @@ extern u32 even_dma_start_r; /* bit 0 should always be 0 */
|
|||
extern u32 odd_dma_start_r; /* .. */
|
||||
extern u32 even_dma_stride_r; /* bits 0&1 should always be 0 */
|
||||
extern u32 odd_dma_stride_r; /* .. */
|
||||
extern u32 even_pixel_fmt_r;
|
||||
extern u32 odd_pixel_fmt_r;
|
||||
|
||||
extern FIFO_TRIGGER_R fifo_trigger_r;
|
||||
extern XFER_MODE_R xfer_mode_r;
|
||||
extern CSR1_R csr1_r;
|
||||
extern RETRY_WAIT_CNT_R retry_wait_cnt_r;
|
||||
extern INT_CSR_R int_csr_r;
|
||||
|
||||
extern u32 even_fld_mask_r;
|
||||
extern u32 odd_fld_mask_r;
|
||||
|
||||
extern MASK_LENGTH_R mask_length_r;
|
||||
extern FIFO_FLAG_CNT_R fifo_flag_cnt_r;
|
||||
extern IIC_CLK_DUR_R iic_clk_dur_r;
|
||||
extern IIC_CSR1_R iic_csr1_r;
|
||||
extern IIC_CSR2_R iic_csr2_r;
|
||||
extern DMA_UPPER_LMT_R even_dma_upper_lmt_r;
|
||||
extern DMA_UPPER_LMT_R odd_dma_upper_lmt_r;
|
||||
|
||||
|
||||
|
||||
|
@ -330,18 +317,6 @@ typedef union i2c_ad_cmd_tag {
|
|||
extern I2C_CSR2 i2c_csr2;
|
||||
extern I2C_EVEN_CSR i2c_even_csr;
|
||||
extern I2C_ODD_CSR i2c_odd_csr;
|
||||
extern I2C_CONFIG i2c_config;
|
||||
extern u8 i2c_dt_id;
|
||||
extern u8 i2c_x_clip_start;
|
||||
extern u8 i2c_y_clip_start;
|
||||
extern u8 i2c_x_clip_end;
|
||||
extern u8 i2c_y_clip_end;
|
||||
extern u8 i2c_ad_addr;
|
||||
extern u8 i2c_ad_lut;
|
||||
extern I2C_AD_CMD i2c_ad_cmd;
|
||||
extern u8 i2c_dig_out;
|
||||
extern u8 i2c_pm_lut_addr;
|
||||
extern u8 i2c_pm_lut_data;
|
||||
|
||||
/* Functions for Global use */
|
||||
|
||||
|
|
Loading…
Reference in New Issue