License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / include / linux / iio / magnetometer / ak8975.h
blobac9366f807cb3a1ecfa04a3122b2e23d5854d592
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __IIO_MAGNETOMETER_AK8975_H__
3 #define __IIO_MAGNETOMETER_AK8975_H__
5 #include <linux/iio/iio.h>
7 /**
8 * struct ak8975_platform_data - AK8975 magnetometer driver platform data
9 * @eoc_gpio: data ready event gpio
10 * @orientation: mounting matrix relative to main hardware
12 struct ak8975_platform_data {
13 int eoc_gpio;
14 struct iio_mount_matrix orientation;
17 #endif