Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23026
b: refs/heads/master
c: b8e31ed
h: refs/heads/master
v: v3
  • Loading branch information
Jean Delvare authored and Linus Torvalds committed Mar 23, 2006
1 parent cafc995 commit 03191b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 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: 9b238205ba5d79a8a242d7a5ddb82b89e4dc4e48
refs/heads/master: b8e31edc10d160a8bf2159541d9d12f2079a0887
4 changes: 1 addition & 3 deletions trunk/arch/m68k/bvme6000/rtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <linux/module.h>
#include <linux/mc146818rtc.h> /* For struct rtc_time and ioctls, etc */
#include <linux/smp_lock.h>
#include <linux/bcd.h>
#include <asm/bvme6000hw.h>

#include <asm/io.h>
Expand All @@ -32,9 +33,6 @@
* ioctls.
*/

#define BCD2BIN(val) (((val)&15) + ((val)>>4)*10)
#define BIN2BCD(val) ((((val)/10)<<4) + (val)%10)

static unsigned char days_in_mo[] =
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

Expand Down

0 comments on commit 03191b0

Please sign in to comment.