Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 187148
b: refs/heads/master
c: 891eda8
h: refs/heads/master
v: v3
  • Loading branch information
Joe Perches authored and Linus Torvalds committed Mar 12, 2010
1 parent df66588 commit 80d2a75
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1a23d133359eec2297ff4c72c260ccacb156d883
refs/heads/master: 891eda80a5227a12956d7997baf9f4b54a9aa4f9
16 changes: 7 additions & 9 deletions trunk/drivers/block/floppy.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,11 @@
#define REALLY_SLOW_IO

#define DEBUGT 2
#define DCL_DEBUG /* debug disk change line */

#define DPRINT(format, args...) \
pr_info("floppy%d: " format, current_drive, ##args)

#define DCL_DEBUG /* debug disk change line */
#ifdef DCL_DEBUG
#define debug_dcl(test, fmt, args...) \
do { if ((test) & FD_DEBUG) DPRINT(fmt, ##args); } while (0)
Expand All @@ -159,7 +162,6 @@
do { if (0) DPRINT(fmt, ##args); } while (0)
#endif


/* do print messages for unexpected interrupts */
static int print_unex = 1;
#include <linux/module.h>
Expand Down Expand Up @@ -308,9 +310,6 @@ static bool initialized;
#define UDRWE (&write_errors[drive])
#define UFDCS (&fdc_state[FDC(drive)])

#define DPRINT(format, args...) \
pr_info("floppy%d: " format, current_drive, ##args)

#define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
#define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)

Expand Down Expand Up @@ -345,7 +344,7 @@ static bool initialized;
*/
#define MAX_REPLIES 16
static unsigned char reply_buffer[MAX_REPLIES];
static int inr; /* size of reply buffer, when called from interrupt */
static int inr; /* size of reply buffer, when called from interrupt */
#define ST0 (reply_buffer[0])
#define ST1 (reply_buffer[1])
#define ST2 (reply_buffer[2])
Expand Down Expand Up @@ -755,8 +754,7 @@ static int disk_change(int drive)
if (UDRS->keep_data >= 0) {
if ((UDP->flags & FTD_MSG) &&
current_type[drive] != NULL)
DPRINT("Disk type is undefined after "
"disk change\n");
DPRINT("Disk type is undefined after disk change\n");
current_type[drive] = NULL;
floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
}
Expand Down Expand Up @@ -1447,7 +1445,7 @@ static int interpret_errors(void)
char bad;

if (inr != 7) {
DPRINT("-- FDC reply error");
DPRINT("-- FDC reply error\n");
FDCS->reset = 1;
return 1;
}
Expand Down

0 comments on commit 80d2a75

Please sign in to comment.