Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: 4bdc0d676a643140 ("remove ioremap_nocache and devm_ioremap_nocache")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Geert Uytterhoeven and committed by
Martin K. Petersen
0d963008 1cbadd0c

+2 -3
+2 -3
drivers/scsi/zorro_esp.c
··· 801 801 /* additional setup required for Fastlane */ 802 802 if (zep->zorro3 && ent->driver_data == ZORRO_BLZ1230II) { 803 803 /* map full address space up to ESP base for DMA */ 804 - zep->board_base = ioremap(board, 805 - FASTLANE_ESP_ADDR-1); 804 + zep->board_base = ioremap(board, FASTLANE_ESP_ADDR - 1); 806 805 if (!zep->board_base) { 807 806 pr_err("Cannot allocate board address space\n"); 808 807 err = -ENOMEM; ··· 842 843 * dma_registers size if adding any more 843 844 */ 844 845 esp->dma_regs = ioremap(dmaaddr, 845 - sizeof(struct fastlane_dma_registers)); 846 + sizeof(struct fastlane_dma_registers)); 846 847 } else 847 848 /* ZorroII address space remapped nocache by early startup */ 848 849 esp->dma_regs = ZTWO_VADDR(dmaaddr);