mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
net/core: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cb8b6a9377
commit
8a994a7180
1 changed files with 2 additions and 2 deletions
|
@ -846,7 +846,7 @@ static ssize_t pktgen_if_write(struct file *file,
|
|||
const char __user * user_buffer, size_t count,
|
||||
loff_t * offset)
|
||||
{
|
||||
struct seq_file *seq = (struct seq_file *)file->private_data;
|
||||
struct seq_file *seq = file->private_data;
|
||||
struct pktgen_dev *pkt_dev = seq->private;
|
||||
int i = 0, max, len;
|
||||
char name[16], valstr[32];
|
||||
|
@ -1776,7 +1776,7 @@ static ssize_t pktgen_thread_write(struct file *file,
|
|||
const char __user * user_buffer,
|
||||
size_t count, loff_t * offset)
|
||||
{
|
||||
struct seq_file *seq = (struct seq_file *)file->private_data;
|
||||
struct seq_file *seq = file->private_data;
|
||||
struct pktgen_thread *t = seq->private;
|
||||
int i = 0, max, len, ret;
|
||||
char name[40];
|
||||
|
|
Loading…
Reference in a new issue