[<prev] [next>] [day] [month] [year] [list]
Message-Id: <201001081420.32778.hartleys@visionengravers.com>
Date: Fri, 8 Jan 2010 14:20:32 -0700
From: H Hartley Sweeten <hartleys@...ionengravers.com>
To: Linux Kernel <linux-kernel@...r.kernel.org>
Cc: dri-devel@...ts.sourceforge.net, airlied@...ux.ie
Subject: [PATCH] drivers/gpu/drm/nouveau/nouveau_debugfs.c: remove unnecessary casts
drivers/gpu/drm/nouveau/nouveau_debugfs.c: Remove unnecessary casts.
The struct seq_file 'private' member is a void *, the casts are not needed.
Signed-off-by: H Hartley Sweeten <hsweeten@...ionengravers.com>
Cc: David Airlie <airlied@...ux.ie>
---
diff --git a/drivers/gpu/drm/nouveau/nouveau_debugfs.c b/drivers/gpu/drm/nouveau/nouveau_debugfs.c
index d79db36..4971d8f 100644
--- a/drivers/gpu/drm/nouveau/nouveau_debugfs.c
+++ b/drivers/gpu/drm/nouveau/nouveau_debugfs.c
@@ -36,7 +36,7 @@
static int
nouveau_debugfs_channel_info(struct seq_file *m, void *data)
{
- struct drm_info_node *node = (struct drm_info_node *) m->private;
+ struct drm_info_node *node = m->private;
struct nouveau_channel *chan = node->info_ent->data;
seq_printf(m, "channel id : %d\n", chan->id);
@@ -107,7 +107,7 @@ nouveau_debugfs_channel_fini(struct nouveau_channel *chan)
static int
nouveau_debugfs_chipset_info(struct seq_file *m, void *data)
{
- struct drm_info_node *node = (struct drm_info_node *) m->private;
+ struct drm_info_node *node = m->private;
struct drm_minor *minor = node->minor;
struct drm_device *dev = minor->dev;
struct drm_nouveau_private *dev_priv = dev->dev_private;
@@ -124,7 +124,7 @@ nouveau_debugfs_chipset_info(struct seq_file *m, void *data)
static int
nouveau_debugfs_memory_info(struct seq_file *m, void *data)
{
- struct drm_info_node *node = (struct drm_info_node *) m->private;
+ struct drm_info_node *node = m->private;
struct drm_minor *minor = node->minor;
struct drm_device *dev = minor->dev;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists