提交 974fccb7 编写于 作者: J Johan Hovold 提交者: Greg Kroah-Hartman

USB: cypress_m8: fix endianess bug

Cc: Lonnie Mendez <dignome@gmail.com>
Signed-off-by: NJohan Hovold <jhovold@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 0954644b
......@@ -376,7 +376,7 @@ static int cypress_serial_control(struct tty_struct *tty,
__func__, new_baudrate);
/* fill the feature_buffer with new configuration */
*((u_int32_t *)feature_buffer) = new_baudrate;
*((u32 *)feature_buffer) = cpu_to_le32(new_baudrate);
feature_buffer[4] |= data_bits; /* assign data bits in 2 bit space ( max 3 ) */
/* 1 bit gap */
feature_buffer[4] |= (stop_bits << 3); /* assign stop bits in 1 bit space */
......@@ -453,7 +453,7 @@ static int cypress_serial_control(struct tty_struct *tty,
/* store the config in one byte, and later
use bit masks to check values */
priv->current_config = feature_buffer[4];
priv->baud_rate = *((u_int32_t *)feature_buffer);
priv->baud_rate = le32_to_cpup((u32 *)feature_buffer);
spin_unlock_irqrestore(&priv->lock, flags);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册