.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * linux/drivers/acorn/scsi/acornscsi.c |
---|
3 | 4 | * |
---|
4 | 5 | * Acorn SCSI 3 driver |
---|
5 | 6 | * By R.M.King. |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or modify |
---|
8 | | - * it under the terms of the GNU General Public License version 2 as |
---|
9 | | - * published by the Free Software Foundation. |
---|
10 | 7 | * |
---|
11 | 8 | * Abandoned using the Select and Transfer command since there were |
---|
12 | 9 | * some nasty races between our software and the target devices that |
---|
.. | .. |
---|
1070 | 1067 | * Purpose : ensure that all DMA transfers are up-to-date & host->scsi.SCp is correct |
---|
1071 | 1068 | * Params : host - host to finish |
---|
1072 | 1069 | * Notes : This is called when a command is: |
---|
1073 | | - * terminating, RESTORE_POINTERS, SAVE_POINTERS, DISCONECT |
---|
| 1070 | + * terminating, RESTORE_POINTERS, SAVE_POINTERS, DISCONNECT |
---|
1074 | 1071 | * : This must not return until all transfers are completed. |
---|
1075 | 1072 | */ |
---|
1076 | 1073 | static |
---|
.. | .. |
---|
1819 | 1816 | } |
---|
1820 | 1817 | |
---|
1821 | 1818 | /* |
---|
1822 | | - * Function: int acornscsi_reconect_finish(AS_Host *host) |
---|
| 1819 | + * Function: int acornscsi_reconnect_finish(AS_Host *host) |
---|
1823 | 1820 | * Purpose : finish reconnecting a command |
---|
1824 | 1821 | * Params : host - host to complete |
---|
1825 | 1822 | * Returns : 0 if failed |
---|
.. | .. |
---|
2890 | 2887 | .this_id = 7, |
---|
2891 | 2888 | .sg_tablesize = SG_ALL, |
---|
2892 | 2889 | .cmd_per_lun = 2, |
---|
2893 | | - .use_clustering = DISABLE_CLUSTERING, |
---|
| 2890 | + .dma_boundary = PAGE_SIZE - 1, |
---|
2894 | 2891 | .proc_name = "acornscsi", |
---|
2895 | 2892 | }; |
---|
2896 | 2893 | |
---|