Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2 19 lines 498 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (C) 2012 Texas Instruments 4 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com> 5 */ 6 7#ifndef __OMAP2_DSS_DISPC_COMPAT_H 8#define __OMAP2_DSS_DISPC_COMPAT_H 9 10void dispc_mgr_enable_sync(enum omap_channel channel); 11void dispc_mgr_disable_sync(enum omap_channel channel); 12 13int omap_dispc_wait_for_irq_interruptible_timeout(u32 irqmask, 14 unsigned long timeout); 15 16int dss_dispc_initialize_irq(void); 17void dss_dispc_uninitialize_irq(void); 18 19#endif