| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Generic Generic NCR5380 driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 19 | 20 | * Added ISAPNP support for DTC436 adapters, |
|---|
| 20 | 21 | * Thomas Sailer, sailer@ife.ee.ethz.ch |
|---|
| 21 | 22 | * |
|---|
| 22 | | - * See Documentation/scsi/g_NCR5380.txt for more info. |
|---|
| 23 | + * See Documentation/scsi/g_NCR5380.rst for more info. |
|---|
| 23 | 24 | */ |
|---|
| 24 | 25 | |
|---|
| 25 | 26 | #include <asm/io.h> |
|---|
| .. | .. |
|---|
| 339 | 340 | break; |
|---|
| 340 | 341 | case BOARD_DTC3181E: |
|---|
| 341 | 342 | hostdata->io_width = 2; /* 16-bit PDMA */ |
|---|
| 342 | | - /* fall through */ |
|---|
| 343 | + fallthrough; |
|---|
| 343 | 344 | case BOARD_NCR53C400A: |
|---|
| 344 | 345 | case BOARD_HP_C2502: |
|---|
| 345 | 346 | hostdata->c400_ctl_status = 9; |
|---|
| .. | .. |
|---|
| 700 | 701 | .this_id = 7, |
|---|
| 701 | 702 | .sg_tablesize = SG_ALL, |
|---|
| 702 | 703 | .cmd_per_lun = 2, |
|---|
| 703 | | - .use_clustering = DISABLE_CLUSTERING, |
|---|
| 704 | + .dma_boundary = PAGE_SIZE - 1, |
|---|
| 704 | 705 | .cmd_size = NCR5380_CMD_SIZE, |
|---|
| 705 | 706 | .max_sectors = 128, |
|---|
| 706 | 707 | }; |
|---|