// SPDX-License-Identifier: GPL-2.0-or-later /* * ImgTec IR Decoder setup for Sharp protocol. * * Copyright 2012-2014 Imagination Technologies Ltd. */ #include "img-ir-hw.h" /* Convert Sharp data to a scancode */ static int img_ir_sharp_scancode(int len, u64 raw, u64 enabled_protocols, struct img_ir_scancode_req *request) { … } /* Convert Sharp scancode to Sharp data filter */ static int img_ir_sharp_filter(const struct rc_scancode_filter *in, struct img_ir_filter *out, u64 protocols) { … } /* * Sharp decoder * See also http://www.sbprojects.com/knowledge/ir/sharp.php */ struct img_ir_decoder img_ir_sharp = …;