hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/ata/sata_dwc_460ex.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * drivers/ata/sata_dwc_460ex.c
34 *
....@@ -11,11 +12,6 @@
1112 * Based on versions provided by AMCC and Synopsys which are:
1213 * Copyright 2006 Applied Micro Circuits Corporation
1314 * COPYRIGHT (C) 2005 SYNOPSYS, INC. ALL RIGHTS RESERVED
14
- *
15
- * This program is free software; you can redistribute it and/or modify it
16
- * under the terms of the GNU General Public License as published by the
17
- * Free Software Foundation; either version 2 of the License, or (at your
18
- * option) any later version.
1915 */
2016
2117 #ifdef CONFIG_SATA_DWC_DEBUG
....@@ -149,7 +145,11 @@
149145 #endif
150146 };
151147
152
-#define SATA_DWC_QCMD_MAX 32
148
+/*
149
+ * Allow one extra special slot for commands and DMA management
150
+ * to account for libata internal commands.
151
+ */
152
+#define SATA_DWC_QCMD_MAX (ATA_MAX_QUEUE + 1)
153153
154154 struct sata_dwc_device_port {
155155 struct sata_dwc_device *hsdev;