summaryrefslogtreecommitdiffstats
path: root/include/usb/dfu.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-02-26 14:53:52 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-02-28 08:14:14 +0100
commit9b731118f9d42b2f4ebd3528ef3e4f9496461082 (patch)
treee9e27364045397c873f63e758b10f8469d8c8f76 /include/usb/dfu.h
parent7fa10256c3f4b38f9ca899c5367584380c017bea (diff)
downloadbarebox-9b731118f9d42b2f4ebd3528ef3e4f9496461082.tar.gz
barebox-9b731118f9d42b2f4ebd3528ef3e4f9496461082.tar.xz
usb: dfu: Fix spelling of flag name
DFU_FLAG_SAVE should really be named DFU_FLAG_SAFE. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/usb/dfu.h')
-rw-r--r--include/usb/dfu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb/dfu.h b/include/usb/dfu.h
index 698ba9d5a1..00031e7da7 100644
--- a/include/usb/dfu.h
+++ b/include/usb/dfu.h
@@ -22,7 +22,7 @@
#include <linux/types.h>
-#define DFU_FLAG_SAVE (1 << 0)
+#define DFU_FLAG_SAFE (1 << 0)
#define DFU_FLAG_READBACK (1 << 1)
struct usb_dfu_dev {