Commit 8f3a2e04 authored by Catalina Mocanu's avatar Catalina Mocanu Committed by Greg Kroah-Hartman

staging: ft1000-pcmcia: replace DEBUG macro with netdev_dbg

This fixes the following checkpatch.pl warning:
WARNING: Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then
dev_dbg(dev, ... then pr_debug(...  to printk(KERN_DEBUG ...

Removing the macro also fixes:
WARNING: macros should not use a trailing semicolon
Signed-off-by: default avatarCatalina Mocanu <catalina.mocanu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 666e9084
...@@ -37,12 +37,6 @@ ...@@ -37,12 +37,6 @@
#include "ft1000.h" #include "ft1000.h"
#include "boot.h" #include "boot.h"
#ifdef FT_DEBUG
#define DEBUG(n, args...) printk(KERN_DEBUG args);
#else
#define DEBUG(n, args...)
#endif
#define MAX_DSP_WAIT_LOOPS 100 #define MAX_DSP_WAIT_LOOPS 100
#define DSP_WAIT_SLEEP_TIME 1 /* 1 millisecond */ #define DSP_WAIT_SLEEP_TIME 1 /* 1 millisecond */
...@@ -127,7 +121,7 @@ void card_bootload(struct net_device *dev) ...@@ -127,7 +121,7 @@ void card_bootload(struct net_device *dev)
u32 i; u32 i;
u32 templong; u32 templong;
DEBUG(0, "card_bootload is called\n"); netdev_dbg(dev, "card_bootload is called\n");
pdata = (u32 *) bootimage; pdata = (u32 *) bootimage;
size = sizeof(bootimage); size = sizeof(bootimage);
...@@ -436,7 +430,7 @@ int card_download(struct net_device *dev, const u8 *pFileStart, ...@@ -436,7 +430,7 @@ int card_download(struct net_device *dev, const u8 *pFileStart,
request = get_request_type(dev); request = get_request_type(dev);
switch (request) { switch (request) {
case REQUEST_FILE_CHECKSUM: case REQUEST_FILE_CHECKSUM:
DEBUG(0, netdev_dbg(dev,
"ft1000_dnld: REQUEST_FOR_CHECKSUM\n"); "ft1000_dnld: REQUEST_FOR_CHECKSUM\n");
put_request_value(dev, image_chksum); put_request_value(dev, image_chksum);
break; break;
...@@ -651,7 +645,7 @@ int card_download(struct net_device *dev, const u8 *pFileStart, ...@@ -651,7 +645,7 @@ int card_download(struct net_device *dev, const u8 *pFileStart,
(u32) (u32)
pDspImageInfoV6-> pDspImageInfoV6->
checksum; checksum;
DEBUG(0, netdev_dbg(dev,
"ft1000_dnld: image_chksum = 0x%8x\n", "ft1000_dnld: image_chksum = 0x%8x\n",
(unsigned (unsigned
int) int)
...@@ -694,11 +688,11 @@ int card_download(struct net_device *dev, const u8 *pFileStart, ...@@ -694,11 +688,11 @@ int card_download(struct net_device *dev, const u8 *pFileStart,
|| pHdr->portsrc == 0x10 /* FMM */)) { || pHdr->portsrc == 0x10 /* FMM */)) {
uiState = STATE_SECTION_PROV; uiState = STATE_SECTION_PROV;
} else { } else {
DEBUG(1, netdev_dbg(dev,
"FT1000:download:Download error: Bad Port IDs in Pseudo Record\n"); "FT1000:download:Download error: Bad Port IDs in Pseudo Record\n");
DEBUG(1, "\t Port Source = 0x%2.2x\n", netdev_dbg(dev, "\t Port Source = 0x%2.2x\n",
pHdr->portsrc); pHdr->portsrc);
DEBUG(1, "\t Port Destination = 0x%2.2x\n", netdev_dbg(dev, "\t Port Destination = 0x%2.2x\n",
pHdr->portdest); pHdr->portdest);
Status = FAILURE; Status = FAILURE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment