| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Common routines for Tundra Semiconductor TSI108 host bridge. |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 5 | 6 | * Author: Alex Bounine (alexandreb@tundra.com) |
|---|
| 6 | 7 | * Author: Roy Zang (tie-fei.zang@freescale.com) |
|---|
| 7 | 8 | * 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. |
|---|
| 22 | 9 | */ |
|---|
| 23 | 10 | |
|---|
| 24 | 11 | #include <linux/kernel.h> |
|---|
| .. | .. |
|---|
| 229 | 216 | |
|---|
| 230 | 217 | (hose)->ops = &tsi108_direct_pci_ops; |
|---|
| 231 | 218 | |
|---|
| 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); |
|---|
| 235 | 221 | |
|---|
| 236 | 222 | /* Interpret the "ranges" property */ |
|---|
| 237 | 223 | /* This also maps the I/O region and sets isa_io/mem_base */ |
|---|