OLD | NEW |
(Empty) | |
| 1 /* linux/drivers/media/video/samsung/tv20/cec_s5pv210.h |
| 2 * |
| 3 * Copyright (c) 2010 Samsung Electronics Co., Ltd. |
| 4 * http://www.samsung.com/ |
| 5 * |
| 6 * S5PV210 - cec ftn header for Samsung TVOut driver |
| 7 * |
| 8 * This program is free software; you can redistribute it and/or modify |
| 9 * it under the terms of the GNU General Public License version 2 as |
| 10 * published by the Free Software Foundation. |
| 11 */ |
| 12 |
| 13 #ifndef _LINUX_CEC_H_ |
| 14 #define _LINUX_CEC_H_ |
| 15 |
| 16 #define CEC_IOC_MAGIC 'c' |
| 17 |
| 18 /** |
| 19 * CEC device request code to set logical address. |
| 20 */ |
| 21 #define CEC_IOC_SETLADDR _IOW(CEC_IOC_MAGIC, 0, unsigned int) |
| 22 |
| 23 #endif /* _LINUX_CEC_H_ */ |
OLD | NEW |