mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
V4L/DVB: v4l2_subdev: Get rid of now unused IR pulse width defines
Signed-off-by: Andy Walls <awalls@md.metrocast.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c02e0d12a9
commit
d69e85b644
2 changed files with 3 additions and 8 deletions
|
@ -886,10 +886,10 @@ static int cx25840_ir_tx_write(struct v4l2_subdev *sd, u8 *buf, size_t count,
|
|||
*/
|
||||
for (i = 0; i < n; ) {
|
||||
for (j = 0; j < FIFO_TX_DEPTH / 2 && i < n; j++) {
|
||||
mark = ns_pulse[i] & V4L2_SUBDEV_IR_PULSE_LEVEL_MASK;
|
||||
mark = ns_pulse[i] & LEVEL_MASK;
|
||||
fifo_pulse[j] = ns_to_pulse_width_count(
|
||||
ns_pulse[i] &
|
||||
~V4L2_SUBDEV_IR_PULSE_LEVEL_MASK,
|
||||
~LEVEL_MASK,
|
||||
ir_state->txclk_divider);
|
||||
if (mark)
|
||||
fifo_pulse[j] &= FIFO_RXTX_LVL;
|
||||
|
|
|
@ -360,14 +360,9 @@ struct v4l2_subdev_sensor_ops {
|
|||
*/
|
||||
|
||||
enum v4l2_subdev_ir_mode {
|
||||
V4L2_SUBDEV_IR_MODE_PULSE_WIDTH, /* space & mark widths in nanosecs */
|
||||
V4L2_SUBDEV_IR_MODE_PULSE_WIDTH, /* uses struct ir_raw_event records */
|
||||
};
|
||||
|
||||
/* Data format of data read or written for V4L2_SUBDEV_IR_MODE_PULSE_WIDTH */
|
||||
#define V4L2_SUBDEV_IR_PULSE_MAX_WIDTH_NS 0x7fffffff
|
||||
#define V4L2_SUBDEV_IR_PULSE_LEVEL_MASK 0x80000000
|
||||
#define V4L2_SUBDEV_IR_PULSE_RX_SEQ_END 0xffffffff
|
||||
|
||||
struct v4l2_subdev_ir_parameters {
|
||||
/* Either Rx or Tx */
|
||||
unsigned int bytes_per_data_element; /* of data in read or write call */
|
||||
|
|
Loading…
Reference in a new issue