adv7511.h (6b16f5d12202a23d875915349cc031c07fe1b3ec) adv7511.h (63f8f3badf799c8b63ff33a489886bc138ce5d09)
1/*
2 * Analog Devices ADV7511 HDMI transmitter driver
3 *
4 * Copyright 2012 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2.
7 */
8

--- 381 unchanged lines hidden (view full) ---

390 ADV7511_CEC_CTRL_POWER_DOWN);
391 return 0;
392}
393#endif
394
395#ifdef CONFIG_DRM_I2C_ADV7533
396void adv7533_dsi_power_on(struct adv7511 *adv);
397void adv7533_dsi_power_off(struct adv7511 *adv);
1/*
2 * Analog Devices ADV7511 HDMI transmitter driver
3 *
4 * Copyright 2012 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2.
7 */
8

--- 381 unchanged lines hidden (view full) ---

390 ADV7511_CEC_CTRL_POWER_DOWN);
391 return 0;
392}
393#endif
394
395#ifdef CONFIG_DRM_I2C_ADV7533
396void adv7533_dsi_power_on(struct adv7511 *adv);
397void adv7533_dsi_power_off(struct adv7511 *adv);
398void adv7533_mode_set(struct adv7511 *adv, struct drm_display_mode *mode);
398void adv7533_mode_set(struct adv7511 *adv, const struct drm_display_mode *mode);
399int adv7533_patch_registers(struct adv7511 *adv);
400int adv7533_patch_cec_registers(struct adv7511 *adv);
401int adv7533_attach_dsi(struct adv7511 *adv);
402void adv7533_detach_dsi(struct adv7511 *adv);
403int adv7533_parse_dt(struct device_node *np, struct adv7511 *adv);
404#else
405static inline void adv7533_dsi_power_on(struct adv7511 *adv)
406{
407}
408
409static inline void adv7533_dsi_power_off(struct adv7511 *adv)
410{
411}
412
413static inline void adv7533_mode_set(struct adv7511 *adv,
399int adv7533_patch_registers(struct adv7511 *adv);
400int adv7533_patch_cec_registers(struct adv7511 *adv);
401int adv7533_attach_dsi(struct adv7511 *adv);
402void adv7533_detach_dsi(struct adv7511 *adv);
403int adv7533_parse_dt(struct device_node *np, struct adv7511 *adv);
404#else
405static inline void adv7533_dsi_power_on(struct adv7511 *adv)
406{
407}
408
409static inline void adv7533_dsi_power_off(struct adv7511 *adv)
410{
411}
412
413static inline void adv7533_mode_set(struct adv7511 *adv,
414 struct drm_display_mode *mode)
414 const struct drm_display_mode *mode)
415{
416}
417
418static inline int adv7533_patch_registers(struct adv7511 *adv)
419{
420 return -ENODEV;
421}
422

--- 34 unchanged lines hidden ---
415{
416}
417
418static inline int adv7533_patch_registers(struct adv7511 *adv)
419{
420 return -ENODEV;
421}
422

--- 34 unchanged lines hidden ---