All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hareesh Nagarajan <hnagar2@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: geert@linux-m68k.org, davem@davemloft.net
Subject: [PATCH] Trivial patch to remove the unused member 'list' from the *_par structures in some files in drivers/video/
Date: Wed, 12 Oct 2005 12:40:58 -0500	[thread overview]
Message-ID: <434D4AAA.9010905@gmail.com> (raw)

This trivial patch removes the unused member 'list' from the 
corresponding *_par structure from some files in drivers/video/

For e.g.: struct tcx_par, in drivers/video/tcx.c

Signed-off-by: Hareesh Nagarajan <hnagar2@gmail.com>

---
diff -ruN linux-2.6.13.4/drivers/video/bw2.c 
linux-2.6.13.4-edit/drivers/video/bw2.c
--- linux-2.6.13.4/drivers/video/bw2.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/bw2.c	2005-10-12 
00:06:48.239981000 -0500
@@ -119,7 +119,6 @@
  	unsigned long		fbsize;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  /**
diff -ruN linux-2.6.13.4/drivers/video/cg14.c 
linux-2.6.13.4-edit/drivers/video/cg14.c
--- linux-2.6.13.4/drivers/video/cg14.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/cg14.c	2005-10-12 
00:10:25.039490000 -0500
@@ -204,7 +204,6 @@
  	int			mode;
  	int			ramsize;
  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  static void __cg14_reset(struct cg14_par *par)
diff -ruN linux-2.6.13.4/drivers/video/cg3.c 
linux-2.6.13.4-edit/drivers/video/cg3.c
--- linux-2.6.13.4/drivers/video/cg3.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/cg3.c	2005-10-12 
00:07:06.759939000 -0500
@@ -122,7 +122,6 @@
  	unsigned long		fbsize;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  /**
diff -ruN linux-2.6.13.4/drivers/video/cg6.c 
linux-2.6.13.4-edit/drivers/video/cg6.c
--- linux-2.6.13.4/drivers/video/cg6.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/cg6.c	2005-10-12 
00:06:04.330080000 -0500
@@ -263,7 +263,6 @@
  	unsigned long		fbsize;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  static int cg6_sync(struct fb_info *info)
diff -ruN linux-2.6.13.4/drivers/video/ffb.c 
linux-2.6.13.4-edit/drivers/video/ffb.c
--- linux-2.6.13.4/drivers/video/ffb.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/ffb.c	2005-10-12 
00:10:44.739447000 -0500
@@ -359,7 +359,6 @@
  	int			prom_parent_node;
  	int			dac_rev;
  	int			board_type;
-	struct list_head	list;
  };

  static void FFBFifo(struct ffb_par *par, int n)
diff -ruN linux-2.6.13.4/drivers/video/leo.c 
linux-2.6.13.4-edit/drivers/video/leo.c
--- linux-2.6.13.4/drivers/video/leo.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/leo.c	2005-10-12 
00:10:10.839522000 -0500
@@ -195,7 +195,6 @@
  	unsigned long		fbsize;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  static void leo_wait(struct leo_lx_krn __iomem *lx_krn)
diff -ruN linux-2.6.13.4/drivers/video/p9100.c 
linux-2.6.13.4-edit/drivers/video/p9100.c
--- linux-2.6.13.4/drivers/video/p9100.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/p9100.c	2005-10-12 
00:07:30.459885000 -0500
@@ -138,7 +138,6 @@
  	unsigned long		fbsize;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  /**
diff -ruN linux-2.6.13.4/drivers/video/tcx.c 
linux-2.6.13.4-edit/drivers/video/tcx.c
--- linux-2.6.13.4/drivers/video/tcx.c	2005-10-10 13:54:29.000000000 -0500
+++ linux-2.6.13.4-edit/drivers/video/tcx.c	2005-10-12 
00:02:53.710511000 -0500
@@ -123,7 +123,6 @@
  	int			lowdepth;

  	struct sbus_dev		*sdev;
-	struct list_head	list;
  };

  /* Reset control plane so that WID is 8-bit plane. */

                 reply	other threads:[~2005-10-12 17:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=434D4AAA.9010905@gmail.com \
    --to=hnagar2@gmail.com \
    --cc=davem@davemloft.net \
    --cc=geert@linux-m68k.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.