Commit 7bc1bac77a69011550ce0613f4a23712a002d7ad

Authored by Dan Carpenter
Committed by Linus Torvalds
1 parent 11475975dd

HPFS: remove PRINTK() macro

The PRINTK() macro isn't really used.  Let's just remove it because it
is ugly and out of date.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 2 changed files with 0 additions and 8 deletions Side-by-side Diff

... ... @@ -156,7 +156,6 @@
156 156  
157 157 void hpfs_mark_4buffers_dirty(struct quad_buffer_head *qbh)
158 158 {
159   - PRINTK(("hpfs_mark_4buffers_dirty\n"));
160 159 memcpy(qbh->bh[0]->b_data, qbh->data, 512);
161 160 memcpy(qbh->bh[1]->b_data, qbh->data + 512, 512);
162 161 memcpy(qbh->bh[2]->b_data, qbh->data + 2 * 512, 512);
... ... @@ -35,13 +35,6 @@
35 35  
36 36 #define CHKCOND(x,y) if (!(x)) printk y
37 37  
38   -#ifdef DBG
39   -#define PRINTK(x) printk x
40   -#else
41   -#undef PRINTK
42   -#define PRINTK(x)
43   -#endif
44   -
45 38 struct hpfs_inode_info {
46 39 loff_t mmu_private;
47 40 ino_t i_parent_dir; /* (directories) gives fnode of parent dir */