USB: pl2303: make type data const
Declare constant device-type data as const. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0e16114f2d
commit
b693468155
1 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ struct pl2303_type_data {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pl2303_serial_private {
|
struct pl2303_serial_private {
|
||||||
struct pl2303_type_data *type;
|
const struct pl2303_type_data *type;
|
||||||
unsigned long quirks;
|
unsigned long quirks;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ struct pl2303_private {
|
||||||
u8 line_settings[7];
|
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] = {
|
[TYPE_01] = {
|
||||||
.max_baud_rate = 1228800,
|
.max_baud_rate = 1228800,
|
||||||
.quirks = PL2303_QUIRK_LEGACY,
|
.quirks = PL2303_QUIRK_LEGACY,
|
||||||
|
|
Loading…
Add table
Reference in a new issue