aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/most/dim2/dim2.h
blob: 6a9fc51a2eb4ad884136c8248a43bc02cd554593 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-2.0
/*
 * dim2.h - MediaLB DIM2 HDM Header
 *
 * Copyright (C) 2015, Microchip Technology Germany II GmbH & Co. KG
 */

#ifndef DIM2_HDM_H
#define	DIM2_HDM_H

struct device;

/* platform dependent data for dim2 interface */
struct dim2_platform_data {
	int (*init)(struct dim2_platform_data *pd, void __iomem *io_base,
		    int clk_speed);
	void (*destroy)(struct dim2_platform_data *pd);
	void *priv;
};

#endif	/* DIM2_HDM_H */