1234567891011121314151617181920212223242526272829303132 |
- /*
- * arch/arm/plat-omap/include/mach/board.h
- *
- * Information structures for board-specific data
- *
- * Copyright (C) 2004 Nokia Corporation
- * Written by Juha Yrjölä <juha.yrjola@nokia.com>
- */
- #ifndef _OMAP_BOARD_H
- #define _OMAP_BOARD_H
- #include <linux/types.h>
- struct omap_lcd_config {
- char panel_name[16];
- char ctrl_name[16];
- s16 nreset_gpio;
- u8 data_lines;
- };
- struct device;
- struct fb_info;
- struct omap_backlight_config {
- int default_intensity;
- int (*set_power)(struct device *dev, int state);
- };
- /* for TI reference platforms sharing the same debug card */
- extern int debug_card_init(u32 addr, unsigned gpio);
- #endif
|