Commit 0d963008 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Martin K. Petersen
Browse files

scsi: zorro_esp: Restore devm_ioremap() alignment

Restore alignment of the continuations of the ioremap() calls in
zorro_esp_probe().  Join lines where all parameters can fit on a single
line.

Link: https://lore.kernel.org/r/20200212085138.10009-1-geert+renesas@glider.be


Fixes: 4bdc0d67 ("remove ioremap_nocache and devm_ioremap_nocache")
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 1cbadd0c
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -801,8 +801,7 @@ static int zorro_esp_probe(struct zorro_dev *z,
	/* additional setup required for Fastlane */
	if (zep->zorro3 && ent->driver_data == ZORRO_BLZ1230II) {
		/* map full address space up to ESP base for DMA */
		zep->board_base = ioremap(board,
						FASTLANE_ESP_ADDR-1);
		zep->board_base = ioremap(board, FASTLANE_ESP_ADDR - 1);
		if (!zep->board_base) {
			pr_err("Cannot allocate board address space\n");
			err = -ENOMEM;