hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/arch/powerpc/sysdev/tsi108_pci.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Common routines for Tundra Semiconductor TSI108 host bridge.
34 *
....@@ -5,20 +6,6 @@
56 * Author: Alex Bounine (alexandreb@tundra.com)
67 * Author: Roy Zang (tie-fei.zang@freescale.com)
78 * Add pci interrupt router host
8
- *
9
- * This program is free software; you can redistribute it and/or modify it
10
- * under the terms of the GNU General Public License as published by the Free
11
- * Software Foundation; either version 2 of the License, or (at your option)
12
- * any later version.
13
- *
14
- * This program is distributed in the hope that it will be useful, but WITHOUT
15
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17
- * more details.
18
- *
19
- * You should have received a copy of the GNU General Public License along with
20
- * this program; if not, write to the Free Software Foundation, Inc., 59
21
- * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
229 */
2310
2411 #include <linux/kernel.h>
....@@ -229,9 +216,8 @@
229216
230217 (hose)->ops = &tsi108_direct_pci_ops;
231218
232
- printk(KERN_INFO "Found tsi108 PCI host bridge at 0x%08x. "
233
- "Firmware bus number: %d->%d\n",
234
- rsrc.start, hose->first_busno, hose->last_busno);
219
+ pr_info("Found tsi108 PCI host bridge at 0x%pa. Firmware bus number: %d->%d\n",
220
+ &rsrc.start, hose->first_busno, hose->last_busno);
235221
236222 /* Interpret the "ranges" property */
237223 /* This also maps the I/O region and sets isa_io/mem_base */