1094332d3Sopenharmony_ci/*
2094332d3Sopenharmony_ci * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
3094332d3Sopenharmony_ci *
4094332d3Sopenharmony_ci * HDF is dual licensed: you can use it either under the terms of
5094332d3Sopenharmony_ci * the GPL, or the BSD license, at your option.
6094332d3Sopenharmony_ci * See the LICENSE file in the root of this repository for complete details.
7094332d3Sopenharmony_ci */
8094332d3Sopenharmony_ci
9094332d3Sopenharmony_ci#ifndef VIBRATOR_LINEAR_DRIVER_H
10094332d3Sopenharmony_ci#define VIBRATOR_LINEAR_DRIVER_H
11094332d3Sopenharmony_ci
12094332d3Sopenharmony_ci#include "hdf_device_desc.h"
13094332d3Sopenharmony_ci
14094332d3Sopenharmony_cistruct VibratorLinearDriverData {
15094332d3Sopenharmony_ci    struct IDeviceIoService ioService;
16094332d3Sopenharmony_ci    struct HdfDeviceObject *device;
17094332d3Sopenharmony_ci    struct VibratorCfgData *linearCfgData;
18094332d3Sopenharmony_ci};
19094332d3Sopenharmony_ci
20094332d3Sopenharmony_ci#endif /* VIBRATOR_LINEAR_DRIVER_H */
21