diff options
Diffstat (limited to 'include/linux/m4sensorhub/MemMapGyroSensor.h')
| -rw-r--r-- | include/linux/m4sensorhub/MemMapGyroSensor.h | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/include/linux/m4sensorhub/MemMapGyroSensor.h b/include/linux/m4sensorhub/MemMapGyroSensor.h new file mode 100644 index 00000000000..af2f46574cd --- /dev/null +++ b/include/linux/m4sensorhub/MemMapGyroSensor.h @@ -0,0 +1,29 @@ +/********************************************************************* +* +*   Copyright (C) 2012 Motorola, Inc. +* +********************************************************************** + +File    : MemMapGyroSensor.h +Purpose : +**********************************************************************/ +#ifndef __MEMMAP_GYROSENSOR_H__ +#define __MEMMAP_GYROSENSOR_H__ +/****************************** Defines *******************************/ +typedef struct memMapGyro { +	u8 version; +	u8 testCmd; +	u16 dummy; /* Align to 32-bit boundary */ +	s32 x; +	s32 y; +	s32 z; +} sGyroData; + +/**************************** Globals ********************************/ + + +/***************************** Prototypes *****************************/ + + + +#endif /* __MEMMAP_GYROSENSOR_H__*/ |