/* * ImgTec IR Raw Decoder found in PowerDown Controller. * * Copyright 2010-2014 Imagination Technologies Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. */ #ifndef _IMG_IR_RAW_H_ #define _IMG_IR_RAW_H_ struct img_ir_priv; #ifdef CONFIG_IR_IMG_RAW /** * struct img_ir_priv_raw - Private driver data for raw decoder. * @rdev: Raw remote control device * @timer: Timer to echo samples to keep soft decoders happy. * @last_status: Last raw status bits. */ struct img_ir_priv_raw { struct rc_dev *rdev; struct timer_list timer; u32 last_status; };
static inline bool img_ir_raw_enabled(struct img_ir_priv_raw *raw) { return raw->rdev; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james hogan | james hogan | 168 | 100.00% | 2 | 100.00% |
Total | 168 | 100.00% | 2 | 100.00% |