linux/drivers/staging/media/av7110/av7110_ir.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Driver for the remote control of SAA7146 based AV7110 cards
 *
 * Copyright (C) 1999-2003 Holger Waechtler <[email protected]>
 * Copyright (C) 2003-2007 Oliver Endriss <[email protected]>
 * Copyright (C) 2019 Sean Young <[email protected]>
 */

#include <linux/kernel.h>
#include <media/rc-core.h>

#include "av7110.h"
#include "av7110_hw.h"

#define IR_RC5
#define IR_RCMM
#define IR_RC5_EXT

/* interrupt handler */
void av7110_ir_handler(struct av7110 *av7110, u32 ircom)
{}

int av7110_set_ir_config(struct av7110 *av7110)
{}

static int change_protocol(struct rc_dev *rcdev, u64 *rc_type)
{}

int av7110_ir_init(struct av7110 *av7110)
{}

void av7110_ir_exit(struct av7110 *av7110)
{}

//MODULE_AUTHOR("Holger Waechtler <[email protected]>, Oliver Endriss <[email protected]>");
//MODULE_LICENSE("GPL");