summaryrefslogtreecommitdiff
path: root/lwis_device_test.h
blob: c3236e26312f1770734b09a13fff7bbd2d8cc8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Google LWIS Test Device Driver
 *
 * Copyright (c) 2022 Google, LLC
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef LWIS_DEVICE_TEST_H_
#define LWIS_DEVICE_TEST_H_

#include "lwis_commands.h"
#include "lwis_device.h"

/*
 *  struct lwis_test_device
 *  The device majorly control/handle requests from test clients.
 */
struct lwis_test_device {
	struct lwis_device base_dev;
};

int lwis_test_device_deinit(void);

#endif /* LWIS_DEVICE_TEST_H_ */