Commit e4192bb6 authored by Linus Torvalds's avatar Linus Torvalds

Fix type - it used to be "__u8 short", which previous versions

of gcc incorrectly accepted as "short". It got fixed to __u8, but
it really should be __u16.
parent 1595982c
......@@ -437,7 +437,7 @@ struct atapi_mechstat_header {
byte curlba[3];
byte nslots;
__u8 slot_tablelen;
__u16 slot_tablelen;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment