public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28] staging: ft1000-pcmcia: various fixes
@ 2011-06-30 22:03 Ondrej Zary
  2011-06-30 22:03 ` [PATCH 01/28] staging: ft1000-pcmcia: don't crash on load Ondrej Zary
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Ondrej Zary @ 2011-06-30 22:03 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Marek Belisko, Kernel development list

Fix various things in ft1000-pcmcia driver.

Ondrej Zary (28):
      staging: ft1000-pcmcia: don't crash on load
      staging: ft1000-pcmcia: fix compilation with FT_DEBUG enabled
      staging: ft1000-pcmcia: delete ft1000.conf
      staging: ft1000-pcmcia: get rid of ft1000_dev.h
      staging: ft1000-pcmcia: remove PSEUDO_HDR typedefs
      staging: ft1000-pcmcia: remove DRVMSG typedefs
      staging: ft1000-pcmcia: remove MEDIAMSG typedefs
      staging: ft1000-pcmcia: delete unused TIMEMSG typedefs
      staging: ft1000-pcmcia: remove DSPINITMSG typedefs
      staging: ft1000-pcmcia: delete unused DSPHIBERNATE typedefs
      staging: ft1000-pcmcia: delete unused APP_INFO_BLOCK typedefs
      staging: ft1000-pcmcia: remove PROV_RECORD typedefs
      staging: ft1000-pcmcia: remove FT1000_INFO typedefs
      staging: ft1000-pcmcia: delete unused DPRAM_BLK typedefs
      staging: ft1000-pcmcia: delete local_info_t typedef
      staging: ft1000-pcmcia: remove firmware download typedefs
      staging: ft1000-pcmcia: remove unused fields from struct ft1000_info
      staging: ft1000-pcmcia: remove custom defines for standard types
      staging: ft1000-pcmcia: remove useless defines from ft1000_cs.c
      staging: ft1000-pcmcia: remove useless debugging from ft1000_cs.c
      staging: ft1000-pcmcia: remove misleading and template comments from ft1000_cs.c
      staging: ft1000-pcmcia: remove unused ft1000_asic_read and ft1000_asic_write functions
      staging: ft1000-pcmcia: coding style fixes in ft1000_cs.c
      staging: ft1000-pcmcia: remove unused includes from ft1000_cs.c
      staging: ft1000-pcmcia: remove useless ft1000_release() function
      staging: ft1000-pcmcia: CodingStyle fixes in ft1000.h
      staging: ft1000-pcmcia: remove PSEUDOSZ, use sizeof(struct pseudo_hdr) instead
      staging: ft1000-pcmcia: remove support for v5 firmware


 drivers/staging/ft1000/ft1000-pcmcia/ft1000.conf   |   14 -
 drivers/staging/ft1000/ft1000-pcmcia/ft1000.h      |  697 +++++++++-----------
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_cs.c   |  190 +-----
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_dev.h  |   66 --
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_dnld.c |  561 ++++++----------
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c   |  224 +++----
 drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c |   26 +-
 7 files changed, 625 insertions(+), 1153 deletions(-)

-- 
Ondrej Zary



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

end of thread, other threads:[~2011-07-05 17:35 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-30 22:03 [PATCH 00/28] staging: ft1000-pcmcia: various fixes Ondrej Zary
2011-06-30 22:03 ` [PATCH 01/28] staging: ft1000-pcmcia: don't crash on load Ondrej Zary
2011-06-30 22:03 ` [PATCH 02/28] staging: ft1000-pcmcia: fix compilation with FT_DEBUG enabled Ondrej Zary
2011-06-30 22:03 ` [PATCH 03/28] staging: ft1000-pcmcia: delete ft1000.conf Ondrej Zary
2011-06-30 22:03 ` [PATCH 04/28] staging: ft1000-pcmcia: get rid of ft1000_dev.h Ondrej Zary
2011-06-30 22:03 ` [PATCH 05/28] staging: ft1000-pcmcia: remove PSEUDO_HDR typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 06/28] staging: ft1000-pcmcia: remove DRVMSG typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 07/28] staging: ft1000-pcmcia: remove MEDIAMSG typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 08/28] staging: ft1000-pcmcia: delete unused TIMEMSG typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 09/28] staging: ft1000-pcmcia: remove DSPINITMSG typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 10/28] staging: ft1000-pcmcia: delete unused DSPHIBERNATE typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 11/28] staging: ft1000-pcmcia: delete unused APP_INFO_BLOCK typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 12/28] staging: ft1000-pcmcia: remove PROV_RECORD typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 13/28] staging: ft1000-pcmcia: remove FT1000_INFO typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 14/28] staging: ft1000-pcmcia: delete unused DPRAM_BLK typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 15/28] staging: ft1000-pcmcia: delete local_info_t typedef Ondrej Zary
2011-06-30 22:03 ` [PATCH 16/28] staging: ft1000-pcmcia: remove firmware download typedefs Ondrej Zary
2011-06-30 22:03 ` [PATCH 17/28] staging: ft1000-pcmcia: remove unused fields from struct ft1000_info Ondrej Zary
2011-06-30 22:03 ` [PATCH 18/28] staging: ft1000-pcmcia: remove custom defines for standard types Ondrej Zary
2011-06-30 22:03 ` [PATCH 19/28] staging: ft1000-pcmcia: remove useless defines from ft1000_cs.c Ondrej Zary
2011-06-30 22:03 ` [PATCH 20/28] staging: ft1000-pcmcia: remove useless debugging " Ondrej Zary
2011-06-30 22:03 ` [PATCH 21/28] staging: ft1000-pcmcia: remove misleading and template comments " Ondrej Zary
2011-06-30 22:03 ` [PATCH 22/28] staging: ft1000-pcmcia: remove unused ft1000_asic_read and ft1000_asic_write functions Ondrej Zary
2011-06-30 22:03 ` [PATCH 23/28] staging: ft1000-pcmcia: coding style fixes in ft1000_cs.c Ondrej Zary
2011-06-30 22:03 ` [PATCH 24/28] staging: ft1000-pcmcia: remove unused includes from ft1000_cs.c Ondrej Zary
2011-06-30 22:03 ` [PATCH 25/28] staging: ft1000-pcmcia: remove useless ft1000_release() function Ondrej Zary
2011-06-30 22:03 ` [PATCH 26/28] staging: ft1000-pcmcia: CodingStyle fixes in ft1000.h Ondrej Zary
2011-06-30 22:03 ` [PATCH 27/28] staging: ft1000-pcmcia: remove PSEUDOSZ, use sizeof(struct pseudo_hdr) instead Ondrej Zary
2011-06-30 22:03 ` [PATCH 28/28] staging: ft1000-pcmcia: remove support for v5 firmware Ondrej Zary
2011-07-05 17:35 ` [PATCH 00/28] staging: ft1000-pcmcia: various fixes Greg KH

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