From 3ccda2f312b0108d359dc3e2e869aa6d3b22654b Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Mon, 13 Jul 2009 21:21:30 +0000 Subject: [PATCH] Fix copy-paste bug, enabling SIM PMP support, when it was not really found. Approved by: re (implicitly) --- sys/cam/ata/ata_xpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cam/ata/ata_xpt.c b/sys/cam/ata/ata_xpt.c index 8d30297980c..0116b5b7459 100644 --- a/sys/cam/ata/ata_xpt.c +++ b/sys/cam/ata/ata_xpt.c @@ -1204,7 +1204,7 @@ ata_scan_bus(struct cam_periph *periph, union ccb *request_ccb) scan_info->request_ccb->ccb_h.path, 1); cts.ccb_h.func_code = XPT_SET_TRAN_SETTINGS; cts.type = CTS_TYPE_CURRENT_SETTINGS; - cts.xport_specific.sata.pm_present = 1; + cts.xport_specific.sata.pm_present = 0; cts.xport_specific.sata.valid = CTS_SATA_VALID_PM; xpt_action((union ccb *)&cts); }