Skip to content
Snippets Groups Projects
Commit 2ff12285 authored by Mike Frysinger's avatar Mike Frysinger Committed by Remy Bohmer
Browse files

usb_storage: constify us_direction lookup table

parent 0228348e
Branches
Tags
No related merge requests found
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
/* direction table -- this indicates the direction of the data /* direction table -- this indicates the direction of the data
* transfer for each command code -- a 1 indicates input * transfer for each command code -- a 1 indicates input
*/ */
unsigned char us_direction[256/8] = { static const unsigned char us_direction[256/8] = {
0x28, 0x81, 0x14, 0x14, 0x20, 0x01, 0x90, 0x77, 0x28, 0x81, 0x14, 0x14, 0x20, 0x01, 0x90, 0x77,
0x0C, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x20, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment