Commit 7ad2c398 authored by Yu Zhe's avatar Yu Zhe Committed by Juergen Gross

xen: remove unnecessary (void*) conversions

Pointer variables of void * type do not require type cast.
Signed-off-by: default avatarYu Zhe <yuzhe@nfschina.com>
Reviewed-by: default avatarJuergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20230316083954.4223-1-yuzhe@nfschina.comSigned-off-by: default avatarJuergen Gross <jgross@suse.com>
parent 934ef33e
...@@ -64,7 +64,7 @@ static int xensyms_next_sym(struct xensyms *xs) ...@@ -64,7 +64,7 @@ static int xensyms_next_sym(struct xensyms *xs)
static void *xensyms_start(struct seq_file *m, loff_t *pos) static void *xensyms_start(struct seq_file *m, loff_t *pos)
{ {
struct xensyms *xs = (struct xensyms *)m->private; struct xensyms *xs = m->private;
xs->op.u.symdata.symnum = *pos; xs->op.u.symdata.symnum = *pos;
...@@ -76,7 +76,7 @@ static void *xensyms_start(struct seq_file *m, loff_t *pos) ...@@ -76,7 +76,7 @@ static void *xensyms_start(struct seq_file *m, loff_t *pos)
static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos) static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos)
{ {
struct xensyms *xs = (struct xensyms *)m->private; struct xensyms *xs = m->private;
xs->op.u.symdata.symnum = ++(*pos); xs->op.u.symdata.symnum = ++(*pos);
...@@ -88,7 +88,7 @@ static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos) ...@@ -88,7 +88,7 @@ static void *xensyms_next(struct seq_file *m, void *p, loff_t *pos)
static int xensyms_show(struct seq_file *m, void *p) static int xensyms_show(struct seq_file *m, void *p)
{ {
struct xensyms *xs = (struct xensyms *)m->private; struct xensyms *xs = m->private;
struct xenpf_symdata *symdata = &xs->op.u.symdata; struct xenpf_symdata *symdata = &xs->op.u.symdata;
seq_printf(m, "%016llx %c %s\n", symdata->address, seq_printf(m, "%016llx %c %s\n", symdata->address,
...@@ -120,7 +120,7 @@ static int xensyms_open(struct inode *inode, struct file *file) ...@@ -120,7 +120,7 @@ static int xensyms_open(struct inode *inode, struct file *file)
return ret; return ret;
m = file->private_data; m = file->private_data;
xs = (struct xensyms *)m->private; xs = m->private;
xs->namelen = XEN_KSYM_NAME_LEN + 1; xs->namelen = XEN_KSYM_NAME_LEN + 1;
xs->name = kzalloc(xs->namelen, GFP_KERNEL); xs->name = kzalloc(xs->namelen, GFP_KERNEL);
...@@ -138,7 +138,7 @@ static int xensyms_open(struct inode *inode, struct file *file) ...@@ -138,7 +138,7 @@ static int xensyms_open(struct inode *inode, struct file *file)
static int xensyms_release(struct inode *inode, struct file *file) static int xensyms_release(struct inode *inode, struct file *file)
{ {
struct seq_file *m = file->private_data; struct seq_file *m = file->private_data;
struct xensyms *xs = (struct xensyms *)m->private; struct xensyms *xs = m->private;
kfree(xs->name); kfree(xs->name);
return seq_release_private(inode, file); return seq_release_private(inode, file);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment