n_gsm: Fix message length handling when building header
authorKen Mills <ken.k.mills@intel.com>
Mon, 13 Dec 2010 15:27:27 +0000 (15:27 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 7 Jan 2011 21:58:37 +0000 (13:58 -0800)
commitbd7e2ae3d4fe121c09a12ad1917b5d8e0200d95f
tree6cbfb50e64791c1df7215a7cac24bdeb8f663da9
parent2f968c28dfa000be33a2c880b36553d38c7aabaa
n_gsm: Fix message length handling when building header

commit be7a7411d63ccad165d66fe8e0b11b2ee336159b upstream.

Fix message length handling when building header

When the message length is greater than 127, the length field in the header
is built incorrectly. According to the spec, when the length is less than 128
the length field is a single byte formatted as: bbbbbbb1. When it is greater
than 127 then the field is two bytes of the format: bbbbbbb0 bbbbbbbb.

Signed-off-by: Ken Mills <ken.k.mills@intel.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/char/n_gsm.c