1 /* 2 * panel data for picodlp panel 3 * 4 * Copyright (C) 2011 Texas Instruments 5 * 6 * Author: Mayuresh Janorkar <mayur@ti.com> 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 #ifndef __PANEL_PICODLP_H 13 #define __PANEL_PICODLP_H 14 /** 15 * struct : picodlp panel data 16 * picodlp_adapter_id: i2c_adapter number for picodlp 17 */ 18 struct picodlp_panel_data { 19 int picodlp_adapter_id; 20 int emu_done_gpio; 21 int pwrgood_gpio; 22 }; 23 #endif /* __PANEL_PICODLP_H */ 24