Path: blob/master/include/video/omap-panel-generic-dpi.h
10814 views
/*1* Header for generic DPI panel driver2*3* Copyright (C) 2010 Canonical Ltd.4* Author: Bryan Wu <[email protected]>5*6* This program is free software; you can redistribute it and/or modify it7* under the terms of the GNU General Public License version 2 as published by8* the Free Software Foundation.9*10* This program is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for13* more details.14*15* You should have received a copy of the GNU General Public License along with16* this program. If not, see <http://www.gnu.org/licenses/>.17*/1819#ifndef __OMAP_PANEL_GENERIC_DPI_H20#define __OMAP_PANEL_GENERIC_DPI_H2122struct omap_dss_device;2324/**25* struct panel_generic_dpi_data - panel driver configuration data26* @name: panel name27* @platform_enable: platform specific panel enable function28* @platform_disable: platform specific panel disable function29*/30struct panel_generic_dpi_data {31const char *name;32int (*platform_enable)(struct omap_dss_device *dssdev);33void (*platform_disable)(struct omap_dss_device *dssdev);34};3536#endif /* __OMAP_PANEL_GENERIC_DPI_H */373839