Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: b69f0859dc8e633c5d8c06845811588fe17e68b3 authored by Linus Torvalds on 03 December 2012, 19:22:37 UTC
Linux 3.7-rc8
Tip revision: b69f085
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