.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * ADC12130/ADC12132/ADC12138 12-bit plus sign ADC driver |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (c) 2016 Akinobu Mita <akinobu.mita@gmail.com> |
---|
5 | | - * |
---|
6 | | - * This file is subject to the terms and conditions of version 2 of |
---|
7 | | - * the GNU General Public License. See the file COPYING in the main |
---|
8 | | - * directory of this archive for more details. |
---|
9 | 6 | * |
---|
10 | 7 | * Datasheet: http://www.ti.com/lit/ds/symlink/adc12138.pdf |
---|
11 | 8 | */ |
---|
.. | .. |
---|
415 | 412 | init_completion(&adc->complete); |
---|
416 | 413 | |
---|
417 | 414 | indio_dev->name = spi_get_device_id(spi)->name; |
---|
418 | | - indio_dev->dev.parent = &spi->dev; |
---|
419 | 415 | indio_dev->info = &adc12138_info; |
---|
420 | 416 | indio_dev->modes = INDIO_DIRECT_MODE; |
---|
421 | 417 | |
---|