Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100805
b: refs/heads/master
c: a796ef7
h: refs/heads/master
i:
  100803: fff05c1
v: v3
  • Loading branch information
Russell King authored and Russell King committed Jul 3, 2008
1 parent f676ad3 commit 485f8dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 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: ffd7858dd8ebb93fad700b830b3b9f6d024c9eac
refs/heads/master: a796ef7035c6c5cc5726c3e4e8d71175c13828df
11 changes: 3 additions & 8 deletions trunk/drivers/scsi/arm/acornscsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,6 @@
#define DBG(cmd,xxx...) xxx
#endif

#ifndef STRINGIFY
#define STRINGIFY(x) #x
#endif
#define STRx(x) STRINGIFY(x)
#define NO_WRITE_STR STRx(NO_WRITE)

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
Expand All @@ -141,6 +135,7 @@
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/bitops.h>
#include <linux/stringify.h>

#include <asm/system.h>
#include <asm/io.h>
Expand Down Expand Up @@ -2828,7 +2823,7 @@ char *acornscsi_info(struct Scsi_Host *host)
" LINK"
#endif
#if (DEBUG & DEBUG_NO_WRITE)
" NOWRITE ("NO_WRITE_STR")"
" NOWRITE (" __stringify(NO_WRITE) ")"
#endif
, host->hostt->name, host->io_port, host->irq,
VER_MAJOR, VER_MINOR, VER_PATCH);
Expand Down Expand Up @@ -2859,7 +2854,7 @@ int acornscsi_proc_info(struct Scsi_Host *instance, char *buffer, char **start,
" LINK"
#endif
#if (DEBUG & DEBUG_NO_WRITE)
" NOWRITE ("NO_WRITE_STR")"
" NOWRITE (" __stringify(NO_WRITE) ")"
#endif
"\n\n", VER_MAJOR, VER_MINOR, VER_PATCH);

Expand Down

0 comments on commit 485f8dc

Please sign in to comment.