Commit 5312ba3b authored by Ondrej Zary's avatar Ondrej Zary Committed by Greg Kroah-Hartman
Browse files

staging: ft1000-pcmcia: remove useless debugging from ft1000_cs.c



Remove useless debugging from ft1000_cs.c

Signed-off-by: default avatarOndrej Zary <linux@rainbow-software.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3d5bc3ff
Loading
Loading
Loading
Loading
+0 −18
Original line number Original line Diff line number Diff line
@@ -65,11 +65,6 @@ MODULE_LICENSE("GPL");
   left out.  If you compile with PCMCIA_DEBUG=0, the debug code will
   left out.  If you compile with PCMCIA_DEBUG=0, the debug code will
   be present but disabled.
   be present but disabled.
*/
*/
#ifdef FT_DEBUG
#define DEBUG(n, args...) printk(KERN_DEBUG args)
#else
#define DEBUG(n, args...)
#endif


/*====================================================================*/
/*====================================================================*/


@@ -103,8 +98,6 @@ static void ft1000_reset(struct pcmcia_device * link)


static int ft1000_attach(struct pcmcia_device *link)
static int ft1000_attach(struct pcmcia_device *link)
{
{
	DEBUG(0, "ft1000_cs: ft1000_attach()\n");

	link->priv = NULL;
	link->priv = NULL;
	link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;
	link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;


@@ -125,13 +118,6 @@ static void ft1000_detach(struct pcmcia_device *link)
{
{
	struct net_device *dev = link->priv;
	struct net_device *dev = link->priv;


	DEBUG(0, "ft1000_cs: ft1000_detach(0x%p)\n", link);

	if (link == NULL) {
		DEBUG(0,"ft1000_cs:ft1000_detach: Got a NULL pointer\n");
		return;
	}

	if (dev) {
	if (dev) {
		stop_ft1000_card(dev);
		stop_ft1000_card(dev);
	}
	}
@@ -207,8 +193,6 @@ static int ft1000_config(struct pcmcia_device *link)
static void ft1000_release(struct pcmcia_device * link)
static void ft1000_release(struct pcmcia_device * link)
{
{


	DEBUG(0, "ft1000_cs: ft1000_release(0x%p)\n", link);

	/*
	/*
	   If the device is currently in use, we won't release until it
	   If the device is currently in use, we won't release until it
	   is actually closed, because until then, we can't be sure that
	   is actually closed, because until then, we can't be sure that
@@ -277,13 +261,11 @@ static struct pcmcia_driver ft1000_cs_driver = {


static int __init init_ft1000_cs(void)
static int __init init_ft1000_cs(void)
{
{
	DEBUG(0, "ft1000_cs: loading\n");
	return pcmcia_register_driver(&ft1000_cs_driver);
	return pcmcia_register_driver(&ft1000_cs_driver);
}
}


static void __exit exit_ft1000_cs(void)
static void __exit exit_ft1000_cs(void)
{
{
	DEBUG(0, "ft1000_cs: unloading\n");
	pcmcia_unregister_driver(&ft1000_cs_driver);
	pcmcia_unregister_driver(&ft1000_cs_driver);
}
}