srf08.c (8f73a13f74571941c2ad6d04c65b52d39cbdf90b) srf08.c (3593cd53962fa17e4eaaae8faa5c8f62ec7bbd5e)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * srf08.c - Support for Devantech SRFxx ultrasonic ranger
4 * with i2c interface
5 * actually supported are srf02, srf08, srf10
6 *
7 * Copyright (c) 2016, 2017 Andreas Klinger <ak@it-klinger.de>
8 *
9 * For details about the device see:
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * srf08.c - Support for Devantech SRFxx ultrasonic ranger
4 * with i2c interface
5 * actually supported are srf02, srf08, srf10
6 *
7 * Copyright (c) 2016, 2017 Andreas Klinger <ak@it-klinger.de>
8 *
9 * For details about the device see:
10 * http://www.robot-electronics.co.uk/htm/srf08tech.html
11 * http://www.robot-electronics.co.uk/htm/srf10tech.htm
12 * http://www.robot-electronics.co.uk/htm/srf02tech.htm
10 * https://www.robot-electronics.co.uk/htm/srf08tech.html
11 * https://www.robot-electronics.co.uk/htm/srf10tech.htm
12 * https://www.robot-electronics.co.uk/htm/srf02tech.htm
13 */
14
15#include <linux/err.h>
16#include <linux/i2c.h>
17#include <linux/delay.h>
18#include <linux/module.h>
19#include <linux/bitops.h>
20#include <linux/iio/iio.h>

--- 539 unchanged lines hidden ---
13 */
14
15#include <linux/err.h>
16#include <linux/i2c.h>
17#include <linux/delay.h>
18#include <linux/module.h>
19#include <linux/bitops.h>
20#include <linux/iio/iio.h>

--- 539 unchanged lines hidden ---