forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-10-09 244b2c5ca8b14627e4a17755e5922221e121c771
kernel/drivers/ata/ahci_xgene.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * AppliedMicro X-Gene SoC SATA Host Controller Driver
34 *
....@@ -6,21 +7,7 @@
67 * Tuan Phan <tphan@apm.com>
78 * Suman Tripathi <stripathi@apm.com>
89 *
9
- * This program is free software; you can redistribute it and/or modify it
10
- * under the terms of the GNU General Public License as published by the
11
- * Free Software Foundation; either version 2 of the License, or (at your
12
- * option) any later version.
13
- *
14
- * This program is distributed in the hope that it will be useful,
15
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
- * GNU General Public License for more details.
18
- *
19
- * You should have received a copy of the GNU General Public License
20
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
- *
2210 * NOTE: PM support is not currently available.
23
- *
2411 */
2512 #include <linux/acpi.h>
2613 #include <linux/module.h>
....@@ -601,8 +588,6 @@
601588 void __iomem *mmio;
602589 u32 irq_stat, irq_masked;
603590
604
- VPRINTK("ENTER\n");
605
-
606591 hpriv = host->private_data;
607592 mmio = hpriv->mmio;
608593
....@@ -624,8 +609,6 @@
624609 rc = xgene_ahci_handle_broken_edge_irq(host, irq_masked);
625610
626611 spin_unlock(&host->lock);
627
-
628
- VPRINTK("EXIT\n");
629612
630613 return IRQ_RETVAL(rc);
631614 }