Staging: rt2860: remove superfluous newlines
This patch is based on next-20091106. This tiny patch removes a few quite unnecessary extra newlines from DBGPRINT() and printk() strings. Signed-off-by: Sebastian Dalfuß <sd@sedf.de> Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ad26848142
commit
d6dbc0126b
3 changed files with 3 additions and 3 deletions
|
@ -181,7 +181,7 @@ int RTMPAllocAdapterBlock(void *handle,
|
||||||
}
|
}
|
||||||
pAd->BeaconBuf = pBeaconBuf;
|
pAd->BeaconBuf = pBeaconBuf;
|
||||||
DBGPRINT(RT_DEBUG_OFF,
|
DBGPRINT(RT_DEBUG_OFF,
|
||||||
("\n\n=== pAd = %p, size = %d ===\n\n", pAd,
|
("=== pAd = %p, size = %d ===\n", pAd,
|
||||||
(u32)sizeof(struct rt_rtmp_adapter)));
|
(u32)sizeof(struct rt_rtmp_adapter)));
|
||||||
|
|
||||||
/* Init spin locks */
|
/* Init spin locks */
|
||||||
|
|
|
@ -163,7 +163,7 @@ int RtmpAsicLoadFirmware(struct rt_rtmp_adapter *pAd)
|
||||||
|
|
||||||
if (Index > 1000) {
|
if (Index > 1000) {
|
||||||
DBGPRINT(RT_DEBUG_ERROR,
|
DBGPRINT(RT_DEBUG_ERROR,
|
||||||
("NICLoadFirmware: MCU is not ready\n\n\n"));
|
("NICLoadFirmware: MCU is not ready\n"));
|
||||||
Status = NDIS_STATUS_FAILURE;
|
Status = NDIS_STATUS_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -340,7 +340,7 @@ int RTMPAllocateNdisPacket(struct rt_rtmp_adapter *pAd,
|
||||||
if (pPacket == NULL) {
|
if (pPacket == NULL) {
|
||||||
*ppPacket = NULL;
|
*ppPacket = NULL;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printk("RTMPAllocateNdisPacket Fail\n\n");
|
printk("RTMPAllocateNdisPacket Fail\n");
|
||||||
#endif
|
#endif
|
||||||
return NDIS_STATUS_FAILURE;
|
return NDIS_STATUS_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue