.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * t5403.c - Support for EPCOS T5403 pressure/temperature sensor |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (c) 2014 Peter Meerwald <pmeerw@pmeerw.net> |
---|
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 | * (7-bit I2C slave address 0x77) |
---|
11 | 8 | * |
---|
.. | .. |
---|
239 | 236 | i2c_set_clientdata(client, indio_dev); |
---|
240 | 237 | indio_dev->info = &t5403_info; |
---|
241 | 238 | indio_dev->name = id->name; |
---|
242 | | - indio_dev->dev.parent = &client->dev; |
---|
243 | 239 | indio_dev->modes = INDIO_DIRECT_MODE; |
---|
244 | 240 | indio_dev->channels = t5403_channels; |
---|
245 | 241 | indio_dev->num_channels = ARRAY_SIZE(t5403_channels); |
---|