korad-kaxxxxp: Fix typo in Korad driver device enum

This commit is contained in:
Hannu Vuolasaho 2015-11-30 22:47:56 +02:00 committed by Uwe Hermann
parent 17124cf9ad
commit bcf9384d3d
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ static const struct korad_kaxxxxp_model models[] = {
/* Device enum, vendor, model, ID reply, channels, voltage, current */ /* Device enum, vendor, model, ID reply, channels, voltage, current */
{VELLEMAN_LABPS_3005D, "Velleman", "LABPS3005D", {VELLEMAN_LABPS_3005D, "Velleman", "LABPS3005D",
"VELLEMANLABPS3005DV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}}, "VELLEMANLABPS3005DV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}},
{KORAD_KA3005D, "Korad", "KA3005P", {KORAD_KA3005P, "Korad", "KA3005P",
"KORADKA3005PV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}}, "KORADKA3005PV2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}},
ALL_ZERO ALL_ZERO
}; };

View File

@ -38,7 +38,7 @@
enum { enum {
VELLEMAN_LABPS_3005D, VELLEMAN_LABPS_3005D,
KORAD_KA3005D, KORAD_KA3005P,
/* Support for future devices with this protocol. */ /* Support for future devices with this protocol. */
}; };