public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/18] Staging: cx25821: Fix style issues
@ 2011-08-30  4:16 Leonid V. Fedorenchik
  2011-08-30  4:16 ` [PATCH v3 01/18] Staging: cx25821: Get rid of typedef in cx25821.h Leonid V. Fedorenchik
                   ` (17 more replies)
  0 siblings, 18 replies; 25+ messages in thread
From: Leonid V. Fedorenchik @ 2011-08-30  4:16 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Mauro Carvalho Chehab, Ruslan Pisarev, Ilia Mirkin, Ilya Gorskin,
	Joe Perches, Palash Bandyopadhyay, Hans Verkuil, Arnd Bergmann,
	Youquan Song, linux-kernel, devel, Leonid V. Fedorenchik

This patch series fixes some style issues in drivers/staging/cx25821
I split my previous patches per logical change and combined them into
one patch series.

Leonid V. Fedorenchik (18):
  Staging: cx25821: Get rid of typedef in cx25821.h
  Staging: cx25821: Delete file cx25821-gpio.h
  Staging: cx25821: Move EXPORT_SYMBOL() to the right place
  Staging: cx25821: Use DEFINE_PCI_DEVICE_TABLE for cx25821_pci_tbl
  Staging: cx25821: Fix wrong brace placement in cx25821-cards.c
  Staging: cx25821: Fix wrong brace placement in cx25821-core.c
  Staging: cx25821: Fix wrong brace placement in cx25821-i2c.c
  Staging: cx25821: Fix too long lines in cx25821-audio.h
  Staging: cx25821: Fix obscure line endings in cx25821-audio-upstream.c
  Staging: cx25821: Fix long lines in cx25821-audio-upstream.c
  Staging: cx25821: Fix long lines in cx25821-audio-upstream.h
  Staging: cx25821: Replace :? by if-else in cx25821-video-upstream-ch2.c
  Staging: cx25821: Fix labels' placement in cx25821-video-upstream-ch2.c
  Staging: cx25821: Fix wrong line endings in cx25821-video-upstream-ch2.c
  Staging: cx25821: Fix long lines in cx25821-video-upstream-ch2.c
  Staging: cx25821: Fix long lines in cx25821-video-upstream-ch2.h
  Staging: cx25821: Fix long lines in cx25821-video-upstream.c
  Staging: cx25821: Fix long lines in cx25821-video-upstream.h

 drivers/staging/cx25821/cx25821-audio-upstream.c   |   33 +++-----
 drivers/staging/cx25821/cx25821-audio-upstream.h   |    9 ++-
 drivers/staging/cx25821/cx25821-audio.h            |    6 +-
 drivers/staging/cx25821/cx25821-cards.c            |    6 +-
 drivers/staging/cx25821/cx25821-core.c             |   31 ++++----
 drivers/staging/cx25821/cx25821-gpio.c             |    1 +
 drivers/staging/cx25821/cx25821-gpio.h             |    2 -
 drivers/staging/cx25821/cx25821-i2c.c              |    6 +-
 .../staging/cx25821/cx25821-video-upstream-ch2.c   |   79 ++++++++-----------
 .../staging/cx25821/cx25821-video-upstream-ch2.h   |   83 ++++++++++++++------
 drivers/staging/cx25821/cx25821-video-upstream.c   |   16 ++---
 drivers/staging/cx25821/cx25821-video-upstream.h   |   78 +++++++++++++------
 drivers/staging/cx25821/cx25821.h                  |    8 +-
 13 files changed, 204 insertions(+), 154 deletions(-)
 delete mode 100644 drivers/staging/cx25821/cx25821-gpio.h


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2011-08-31  6:56 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-30  4:16 [PATCH v3 00/18] Staging: cx25821: Fix style issues Leonid V. Fedorenchik
2011-08-30  4:16 ` [PATCH v3 01/18] Staging: cx25821: Get rid of typedef in cx25821.h Leonid V. Fedorenchik
2011-08-30  4:16 ` [PATCH v3 02/18] Staging: cx25821: Delete file cx25821-gpio.h Leonid V. Fedorenchik
2011-08-30  4:16 ` [PATCH v3 03/18] Staging: cx25821: Move EXPORT_SYMBOL() to the right place Leonid V. Fedorenchik
2011-08-30  4:16 ` [PATCH v3 04/18] Staging: cx25821: Use DEFINE_PCI_DEVICE_TABLE for cx25821_pci_tbl Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 05/18] Staging: cx25821: Fix wrong brace placement in cx25821-cards.c Leonid V. Fedorenchik
2011-08-30 14:05   ` Dan Carpenter
2011-08-31  6:26     ` Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 06/18] Staging: cx25821: Fix wrong brace placement in cx25821-core.c Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 07/18] Staging: cx25821: Fix wrong brace placement in cx25821-i2c.c Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 08/18] Staging: cx25821: Fix too long lines in cx25821-audio.h Leonid V. Fedorenchik
2011-08-30 14:08   ` Dan Carpenter
2011-08-31  6:27     ` Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 09/18] Staging: cx25821: Fix obscure line endings in cx25821-audio-upstream.c Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 10/18] Staging: cx25821: Fix long lines " Leonid V. Fedorenchik
2011-08-30 14:12   ` Dan Carpenter
2011-08-31  6:56     ` Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 11/18] Staging: cx25821: Fix long lines in cx25821-audio-upstream.h Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 12/18] Staging: cx25821: Replace :? by if-else in cx25821-video-upstream-ch2.c Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 13/18] Staging: cx25821: Fix labels' placement " Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 14/18] Staging: cx25821: Fix wrong line endings " Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 15/18] Staging: cx25821: Fix long lines " Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 16/18] Staging: cx25821: Fix long lines in cx25821-video-upstream-ch2.h Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 17/18] Staging: cx25821: Fix long lines in cx25821-video-upstream.c Leonid V. Fedorenchik
2011-08-30  4:17 ` [PATCH v3 18/18] Staging: cx25821: Fix long lines in cx25821-video-upstream.h Leonid V. Fedorenchik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox