linux/arch/arm/mach-omap2/display.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0-only */
   2/*
   3 * display.h - OMAP2+ integration-specific DSS header
   4 *
   5 * Copyright (C) 2011 Texas Instruments, Inc.
   6 */
   7
   8#ifndef __ARCH_ARM_MACH_OMAP2_DISPLAY_H
   9#define __ARCH_ARM_MACH_OMAP2_DISPLAY_H
  10
  11#include <linux/kernel.h>
  12
  13struct omap_dss_dispc_dev_attr {
  14        u8      manager_count;
  15        bool    has_framedonetv_irq;
  16};
  17
  18int omap_init_vrfb(void);
  19int omap_init_fb(void);
  20int omap_init_vout(void);
  21
  22#endif
  23