Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 0034102808e0dbbf3a2394b82b1bb40b5778de9e authored by Linus Torvalds on 08 April 2012, 01:30:41 UTC
Linux 3.4-rc2
Tip revision: 0034102
adis16260_platform_data.h
/*
 * ADIS16260 Programmable Digital Gyroscope Sensor Driver Platform Data
 *
 * Based on adis16255.h Matthia Brugger <m_brugger&web.de>
 *
 * Copyright (C) 2010 Fraunhofer Institute for Integrated Circuits
  *
 * Licensed under the GPL-2 or later.
 */

/**
 * struct adis16260_platform_data - instance specific data
 * @direction: x y or z
 * @negate: flag to indicate value should be inverted.
 **/
struct adis16260_platform_data {
	char direction;
	unsigned negate:1;
};
back to top