1 /* 2 * ADIS16260 Programmable Digital Gyroscope Sensor Driver Platform Data 3 * 4 * Based on adis16255.h Matthia Brugger <m_brugger&web.de> 5 * 6 * Copyright (C) 2010 Fraunhofer Institute for Integrated Circuits 7 * 8 * Licensed under the GPL-2 or later. 9 */ 10 11 /** 12 * struct adis16260_platform_data - instance specific data 13 * @direction: x y or z 14 * @negate: flag to indicate value should be inverted. 15 **/ 16 struct adis16260_platform_data { 17 char direction; 18 unsigned negate:1; 19 }; 20