diff options
Diffstat (limited to 'drivers/usb/serial/io_ti.c')
| -rw-r--r-- | drivers/usb/serial/io_ti.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index 2da2684e080..980285c0233 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c @@ -2811,7 +2811,7 @@ static struct edge_buf *edge_buf_alloc(unsigned int size)  	if (size == 0)  		return NULL; -	eb = (struct edge_buf *)kmalloc(sizeof(struct edge_buf), GFP_KERNEL); +	eb = kmalloc(sizeof(struct edge_buf), GFP_KERNEL);  	if (eb == NULL)  		return NULL;  |