2020-07-06 00:20:15 +00:00
|
|
|
From 55a010770c229decba9ce935ef01c833296cb00e Mon Sep 17 00:00:00 2001
|
2018-02-27 01:43:53 +00:00
|
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
Date: Sun, 25 Feb 2018 16:34:33 -0700
|
|
|
|
Subject: [PATCH 5/9] ata: sata_mv: Add SATA activity LED trigger support
|
|
|
|
|
|
|
|
Signed-off-by: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
---
|
|
|
|
drivers/ata/sata_mv.c | 3 +++
|
|
|
|
1 file changed, 3 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
|
2020-02-12 04:00:15 +00:00
|
|
|
index d7228f8e9297..f69ebc263e77 100644
|
2018-02-27 01:43:53 +00:00
|
|
|
--- a/drivers/ata/sata_mv.c
|
|
|
|
+++ b/drivers/ata/sata_mv.c
|
2019-10-07 00:55:36 +00:00
|
|
|
@@ -59,6 +59,7 @@
|
2018-02-27 01:43:53 +00:00
|
|
|
#include <scsi/scsi_cmnd.h>
|
|
|
|
#include <scsi/scsi_device.h>
|
|
|
|
#include <linux/libata.h>
|
|
|
|
+#include <linux/leds.h>
|
|
|
|
|
|
|
|
#define DRV_NAME "sata_mv"
|
|
|
|
#define DRV_VERSION "1.28"
|
2019-10-07 00:55:36 +00:00
|
|
|
@@ -1162,6 +1163,8 @@ static void mv_start_edma(struct ata_port *ap, void __iomem *port_mmio,
|
2018-02-27 01:43:53 +00:00
|
|
|
{
|
|
|
|
int want_ncq = (protocol == ATA_PROT_NCQ);
|
|
|
|
|
|
|
|
+ ledtrig_sata_activity(ap->port_no);
|
|
|
|
+
|
|
|
|
if (pp->pp_flags & MV_PP_FLAG_EDMA_EN) {
|
|
|
|
int using_ncq = ((pp->pp_flags & MV_PP_FLAG_NCQ_EN) != 0);
|
|
|
|
if (want_ncq != using_ncq)
|
|
|
|
--
|
2020-07-06 00:20:15 +00:00
|
|
|
2.26.1
|
2018-02-27 01:43:53 +00:00
|
|
|
|