| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * lms283gf05.c -- support for Samsung LMS283GF05 LCD |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (c) 2009 Marek Vasut <marek.vasut@gmail.com> |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 8 | | - * published by the Free Software Foundation. |
|---|
| 9 | 6 | */ |
|---|
| 10 | 7 | |
|---|
| 11 | 8 | #include <linux/device.h> |
|---|
| .. | .. |
|---|
| 161 | 158 | ret = devm_gpio_request_one(&spi->dev, pdata->reset_gpio, |
|---|
| 162 | 159 | GPIOF_DIR_OUT | (!pdata->reset_inverted ? |
|---|
| 163 | 160 | GPIOF_INIT_HIGH : GPIOF_INIT_LOW), |
|---|
| 164 | | - "LMS285GF05 RESET"); |
|---|
| 161 | + "LMS283GF05 RESET"); |
|---|
| 165 | 162 | if (ret) |
|---|
| 166 | 163 | return ret; |
|---|
| 167 | 164 | } |
|---|