drm/nouveau/pm: do not stop reclocking if failing to set the fan speed
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / media / s5p_hdmi.h
blob361a751f73afac404f2f1b72904ee4bd901a7477
1 /*
2 * Driver header for S5P HDMI chip.
4 * Copyright (c) 2011 Samsung Electronics, Co. Ltd
5 * Contact: Tomasz Stanislawski <t.stanislaws@samsung.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #ifndef S5P_HDMI_H
14 #define S5P_HDMI_H
16 struct i2c_board_info;
18 /**
19 * @hdmiphy_bus: controller id for HDMIPHY bus
20 * @hdmiphy_info: template for HDMIPHY I2C device
21 * @mhl_bus: controller id for MHL control bus
22 * @mhl_info: template for MHL I2C device
24 * NULL pointer for *_info fields indicates that
25 * the corresponding chip is not present
27 struct s5p_hdmi_platform_data {
28 int hdmiphy_bus;
29 struct i2c_board_info *hdmiphy_info;
30 int mhl_bus;
31 struct i2c_board_info *mhl_info;
34 #endif /* S5P_HDMI_H */