File: evdi_i2c.h

package info (click to toggle)
evdi 1.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 384 kB
  • sloc: ansic: 4,651; makefile: 100; sh: 4
file content (20 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-only
 * Copyright (c) 2020 DisplayLink (UK) Ltd.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License v2. See the file COPYING in the main directory of this archive for
 * more details.
 */

#ifndef EVDI_I2C_H
#define EVDI_I2C_H

#include <linux/module.h>
#include <linux/i2c.h>

int evdi_i2c_add(struct i2c_adapter *adapter,
		struct device *parent,
		void *ddev);
void evdi_i2c_remove(struct i2c_adapter *adapter);

#endif  /* EVDI_I2C_H */