svn commit: r241613 - head/sys/cam/scsi

Eitan Adler eadler at FreeBSD.org
Tue Oct 16 17:49:15 UTC 2012


Author: eadler
Date: Tue Oct 16 17:49:14 2012
New Revision: 241613
URL: http://svn.freebsd.org/changeset/base/241613

Log:
  Add support for samsung HM250JI
  
  PR:		usb/121474
  Submitted by:	Ben Stuyts <ben at altesco.nl>
  Approved by:	cperciva (implicit)
  MFC after:	3 days

Modified:
  head/sys/cam/scsi/scsi_da.c

Modified: head/sys/cam/scsi/scsi_da.c
==============================================================================
--- head/sys/cam/scsi/scsi_da.c	Tue Oct 16 15:43:16 2012	(r241612)
+++ head/sys/cam/scsi/scsi_da.c	Tue Oct 16 17:49:14 2012	(r241613)
@@ -844,6 +844,15 @@ static struct da_quirk_entry da_quirk_ta
 		{T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "(HS) Flash Disk",
 		"*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE
 	},
+	{
+		/*
+		 * LaCie external 250GB Hard drive des by Porsche
+		 * Submitted by: Ben Stuyts <ben at altesco.nl>
+		 * PR: 121474
+		 */
+		{T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HM250JI", "*"},
+		/*quirks*/ DA_Q_NO_SYNC_CACHE
+	},
 };
 
 static	disk_strategy_t	dastrategy;


More information about the svn-src-head mailing list