21 lines
352 B
C
21 lines
352 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2019 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef _BAROHUB_H
|
|
#define _BAROHUB_H
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
|
|
#define BAROHUB_DRIVER_VERSION "V0.1"
|
|
|
|
#define BAROHUB_DEV_NAME "baro_hub_pl"
|
|
|
|
#define BAROHUB_DATA_NUM 1
|
|
#define BAROHUB_PRESSURE 0
|
|
#define BAROHUB_BUFSIZE 60
|
|
|
|
#endif/* BOSCH_BARO_H */
|