.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Remote processor machine-specific module for DA8XX |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2013 Texas Instruments, Inc. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or |
---|
7 | | - * modify it under the terms of the GNU General Public License |
---|
8 | | - * version 2 as published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #include <linux/bitops.h> |
---|
.. | .. |
---|
252 | 249 | int ret; |
---|
253 | 250 | |
---|
254 | 251 | irq = platform_get_irq(pdev, 0); |
---|
255 | | - if (irq < 0) { |
---|
256 | | - dev_err(dev, "platform_get_irq(pdev, 0) error: %d\n", irq); |
---|
| 252 | + if (irq < 0) |
---|
257 | 253 | return irq; |
---|
258 | | - } |
---|
259 | 254 | |
---|
260 | 255 | irq_data = irq_get_irq_data(irq); |
---|
261 | 256 | if (!irq_data) { |
---|