Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 799331fd authored by Mikael Pettersson's avatar Mikael Pettersson Committed by Jeff Garzik
Browse files

sata_promise: add missing cable_detect hooks



The recent change which moved cable detection from
pdc_pre_reset() to the new ->cable_detect hook only
added the hook for SATAII chips, leaving SATAI chips
and the 20619 without the hook. Fixed by this patch.

Signed-off-by: default avatarMikael Pettersson <mikpe@it.uu.se>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 8cdfb29c
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -45,7 +45,7 @@
#include "sata_promise.h"
#include "sata_promise.h"


#define DRV_NAME	"sata_promise"
#define DRV_NAME	"sata_promise"
#define DRV_VERSION	"2.01"
#define DRV_VERSION	"2.02"




enum {
enum {
@@ -194,6 +194,7 @@ static const struct ata_port_operations pdc_old_sata_ops = {
	.thaw			= pdc_thaw,
	.thaw			= pdc_thaw,
	.error_handler		= pdc_error_handler,
	.error_handler		= pdc_error_handler,
	.post_internal_cmd	= pdc_post_internal_cmd,
	.post_internal_cmd	= pdc_post_internal_cmd,
	.cable_detect		= pdc_cable_detect,
	.data_xfer		= ata_data_xfer,
	.data_xfer		= ata_data_xfer,
	.irq_handler		= pdc_interrupt,
	.irq_handler		= pdc_interrupt,
	.irq_clear		= pdc_irq_clear,
	.irq_clear		= pdc_irq_clear,
@@ -220,6 +221,7 @@ static const struct ata_port_operations pdc_pata_ops = {
	.thaw			= pdc_thaw,
	.thaw			= pdc_thaw,
	.error_handler		= pdc_error_handler,
	.error_handler		= pdc_error_handler,
	.post_internal_cmd	= pdc_post_internal_cmd,
	.post_internal_cmd	= pdc_post_internal_cmd,
	.cable_detect		= pdc_cable_detect,
	.data_xfer		= ata_data_xfer,
	.data_xfer		= ata_data_xfer,
	.irq_handler		= pdc_interrupt,
	.irq_handler		= pdc_interrupt,
	.irq_clear		= pdc_irq_clear,
	.irq_clear		= pdc_irq_clear,