|
@@ -2063,8 +2063,7 @@ static int init_dev(struct tty_driver *driver, int idx,
|
|
|
}
|
|
|
|
|
|
if (!*tp_loc) {
|
|
|
- tp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
|
|
|
- GFP_KERNEL);
|
|
|
+ tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
|
|
|
if (!tp)
|
|
|
goto free_mem_out;
|
|
|
*tp = driver->init_termios;
|
|
@@ -2094,8 +2093,7 @@ static int init_dev(struct tty_driver *driver, int idx,
|
|
|
}
|
|
|
|
|
|
if (!*o_tp_loc) {
|
|
|
- o_tp = (struct ktermios *)
|
|
|
- kmalloc(sizeof(struct ktermios), GFP_KERNEL);
|
|
|
+ o_tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
|
|
|
if (!o_tp)
|
|
|
goto free_mem_out;
|
|
|
*o_tp = driver->other->init_termios;
|