1.1 --- a/Hardware/HDD/HDDGeneric.cs Sat Dec 31 17:31:04 2011 +0000
1.2 +++ b/Hardware/HDD/HDDGeneric.cs Sun Jan 01 10:14:42 2012 +0000
1.3 @@ -16,7 +16,7 @@
1.4
1.5 The Initial Developer of the Original Code is
1.6 Roland Reinl <roland-reinl@gmx.de>.
1.7 - Portions created by the Initial Developer are Copyright (C) 2011
1.8 + Portions created by the Initial Developer are Copyright (C) 2011-2012
1.9 the Initial Developer. All Rights Reserved.
1.10
1.11 Contributor(s):
1.12 @@ -116,8 +116,8 @@
1.13 null, SensorType.Temperature, 0)
1.14 };
1.15
1.16 - public GenericHarddisk(ISmart smart, string name, int index,
1.17 - ISettings settings)
1.18 - : base(smart, name, index, smartAttributes, settings) { }
1.19 + public GenericHarddisk(ISmart smart, string name, string firmwareRevision,
1.20 + int index, ISettings settings)
1.21 + : base(smart, name, firmwareRevision, index, smartAttributes, settings) {}
1.22 }
1.23 }