Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31405
b: refs/heads/master
c: 7adc28a
h: refs/heads/master
i:
  31403: f353f1b
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jun 30, 2006
1 parent 328cb82 commit a154771
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 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: 7b2baa1f8a82d0940db6fbbaa00e5b829a99b2c9
refs/heads/master: 7adc28ae75854d9d0940668404a14d1f006f80c0
9 changes: 2 additions & 7 deletions trunk/drivers/cdrom/cm206.c
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ static void seek(int lba)
cd->dsb = wait_dsb();
}

uch bcdbin(unsigned char bcd)
static uch bcdbin(unsigned char bcd)
{ /* stolen from mcd.c! */
return (bcd >> 4) * 10 + (bcd & 0xf);
}
Expand Down Expand Up @@ -1532,7 +1532,7 @@ static void __init parse_options(void)
}
}

static int __cm206_init(void)
static int __init __cm206_init(void)
{
parse_options();
#if !defined(AUTO_PROBE_MODULE)
Expand Down Expand Up @@ -1593,8 +1593,3 @@ __setup("cm206=", cm206_setup);
#endif /* !MODULE */
MODULE_ALIAS_BLOCKDEV_MAJOR(CM206_CDROM_MAJOR);

/*
* Local variables:
* compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -pipe -fno-strength-reduce -m486 -DMODULE -DMODVERSIONS -include /usr/src/linux/include/linux/modversions.h -c -o cm206.o cm206.c"
* End:
*/

0 comments on commit a154771

Please sign in to comment.