summaryrefslogtreecommitdiffstats
path: root/src/usb-device.c
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2014-11-18 23:31:28 +0100
committerPali Rohár <pali.rohar@gmail.com>2014-11-18 23:31:28 +0100
commitc23e8df2607d8b1bc882379000e1990bc055b39d (patch)
tree8f75403521b55356dc2b939d23d615109664006f /src/usb-device.c
parent1a59034571348ceffe3367f489ee04df53d8dca3 (diff)
download0xFFFF-c23e8df2607d8b1bc882379000e1990bc055b39d.tar.bz2
usb-device: Enable also RAW disk
Diffstat (limited to 'src/usb-device.c')
-rw-r--r--src/usb-device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usb-device.c b/src/usb-device.c
index 536f986..0ef55b4 100644
--- a/src/usb-device.c
+++ b/src/usb-device.c
@@ -42,9 +42,9 @@
static struct usb_flash_device usb_devices[] = {
{ 0x0421, 0x0105, 2, 1, -1, FLASH_NOLO, { DEVICE_SU_18, DEVICE_RX_44, DEVICE_RX_48, DEVICE_RX_51, 0 } },
{ 0x0421, 0x0106, 0, -1, -1, FLASH_COLD, { DEVICE_RX_51, 0 } },
-/* { 0x0421, 0x01c7, 0, -1, -1, FLASH_DISK, { DEVICE_RX_51, 0 } }, */
+ { 0x0421, 0x01c7, 0, -1, -1, FLASH_DISK, { DEVICE_RX_51, 0 } },
{ 0x0421, 0x01c8, 1, 1, -1, FLASH_MKII, { DEVICE_RX_51, 0 } },
-/* { 0x0421, 0x0431, 0, -1, -1, FLASH_DISK, { DEVICE_SU_18, DEVICE_RX_34, 0 } }, */
+ { 0x0421, 0x0431, 0, -1, -1, FLASH_DISK, { DEVICE_SU_18, DEVICE_RX_34, 0 } },
{ 0x0421, 0x3f00, 2, 1, -1, FLASH_NOLO, { DEVICE_RX_34, 0 } },
};
@@ -52,7 +52,7 @@ static const char * usb_flash_protocols[] = {
[FLASH_NOLO] = "NOLO",
[FLASH_COLD] = "Cold flashing",
[FLASH_MKII] = "Mk II protocol",
-/* [FLASH_DISK] = "RAW disk", */
+ [FLASH_DISK] = "RAW disk",
};
const char * usb_flash_protocol_to_string(enum usb_flash_protocol protocol) {