ti-tlc4541.c (4e53d47fd3df8c822375647ac97d7fc1c83b605b) ti-tlc4541.c (3593cd53962fa17e4eaaae8faa5c8f62ec7bbd5e)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * TI tlc4541 ADC Driver
4 *
5 * Copyright (C) 2017 Phil Reid
6 *
7 * Datasheets can be found here:
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * TI tlc4541 ADC Driver
4 *
5 * Copyright (C) 2017 Phil Reid
6 *
7 * Datasheets can be found here:
8 * http://www.ti.com/lit/gpn/tlc3541
9 * http://www.ti.com/lit/gpn/tlc4541
8 * https://www.ti.com/lit/gpn/tlc3541
9 * https://www.ti.com/lit/gpn/tlc4541
10 *
11 * The tlc4541 requires 24 clock cycles to start a transfer.
12 * Conversion then takes 2.94us to complete before data is ready
13 * Data is returned MSB first.
14 */
15
16#include <linux/delay.h>
17#include <linux/device.h>

--- 249 unchanged lines hidden ---
10 *
11 * The tlc4541 requires 24 clock cycles to start a transfer.
12 * Conversion then takes 2.94us to complete before data is ready
13 * Data is returned MSB first.
14 */
15
16#include <linux/delay.h>
17#include <linux/device.h>

--- 249 unchanged lines hidden ---