| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | #define PRISM2_PLX |
|---|
| 2 | 3 | |
|---|
| 3 | 4 | /* Host AP driver's support for PC Cards on PCI adapters using PLX9052 is |
|---|
| .. | .. |
|---|
| 351 | 352 | /* read CIS; it is in even offsets in the beginning of attr_mem */ |
|---|
| 352 | 353 | for (i = 0; i < CIS_MAX_LEN; i++) |
|---|
| 353 | 354 | cis[i] = readb(attr_mem + 2 * i); |
|---|
| 354 | | - printk(KERN_DEBUG "%s: CIS: %02x %02x %02x %02x %02x %02x ...\n", |
|---|
| 355 | | - dev_info, cis[0], cis[1], cis[2], cis[3], cis[4], cis[5]); |
|---|
| 355 | + printk(KERN_DEBUG "%s: CIS: %6ph ...\n", dev_info, cis); |
|---|
| 356 | 356 | |
|---|
| 357 | 357 | /* set reasonable defaults for Prism2 cards just in case CIS parsing |
|---|
| 358 | 358 | * fails */ |
|---|