[PATCH] drivers/gpu/drm/nouveau/nouveau_debugfs.c: remove unnecessary casts

From: H Hartley Sweeten
Date: Fri Jan 08 2010 - 16:20:43 EST


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@xxxxxxxxxxxxxxxxxxx>
Cc: David Airlie <airlied@xxxxxxxx>

---

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/