Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.3-rc1 23 lines 590 B view raw
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 */ 18struct picodlp_panel_data { 19 int picodlp_adapter_id; 20 int emu_done_gpio; 21 int pwrgood_gpio; 22}; 23#endif /* __PANEL_PICODLP_H */