aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-09-13 20:26:32 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-09-13 20:26:32 +0000
commitc93259fbdbfec154b37fd4c3a4e1b43f5b7265e5 (patch)
treed2937785aa5554fdd7b90a686342b22a87f592fa /Bootloaders
parentcd40797a4df6d53cc932ba10bdcf88b321e29ed2 (diff)
downloadlufa-c93259fbdbfec154b37fd4c3a4e1b43f5b7265e5.tar.gz
lufa-c93259fbdbfec154b37fd4c3a4e1b43f5b7265e5.tar.bz2
lufa-c93259fbdbfec154b37fd4c3a4e1b43f5b7265e5.zip
Remove incorrect PROGMEM qualifier on the Manufacturer string descriptors in the DFU and CDC class bootloaders (thanks to Oliver Zander).
Diffstat (limited to 'Bootloaders')
-rw-r--r--Bootloaders/CDC/Descriptors.c2
-rw-r--r--Bootloaders/DFU/Descriptors.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/CDC/Descriptors.c b/Bootloaders/CDC/Descriptors.c
index b99df6fdc..6bddcf4a1 100644
--- a/Bootloaders/CDC/Descriptors.c
+++ b/Bootloaders/CDC/Descriptors.c
@@ -189,7 +189,7 @@ const USB_Descriptor_String_t LanguageString =
* form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
* Descriptor.
*/
-const USB_Descriptor_String_t PROGMEM ManufacturerString =
+const USB_Descriptor_String_t ManufacturerString =
{
.Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String},
diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c
index 1d358a39f..95534bdac 100644
--- a/Bootloaders/DFU/Descriptors.c
+++ b/Bootloaders/DFU/Descriptors.c
@@ -130,7 +130,7 @@ const USB_Descriptor_String_t LanguageString =
* form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
* Descriptor.
*/
-const USB_Descriptor_String_t PROGMEM ManufacturerString =
+const USB_Descriptor_String_t ManufacturerString =
{
.Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String},