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

USB: pl2303: make type data const

Declare constant device-type data as const.
Signed-off-by: NJohan Hovold <jhovold@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 0e16114f
......@@ -141,7 +141,7 @@ struct pl2303_type_data {
};
struct pl2303_serial_private {
struct pl2303_type_data *type;
const struct pl2303_type_data *type;
unsigned long quirks;
};
......@@ -153,7 +153,7 @@ struct pl2303_private {
u8 line_settings[7];
};
static struct pl2303_type_data pl2303_type_data[TYPE_COUNT] = {
static const struct pl2303_type_data pl2303_type_data[TYPE_COUNT] = {
[TYPE_01] = {
.max_baud_rate = 1228800,
.quirks = PL2303_QUIRK_LEGACY,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册