dect
/
linux-2.6
Archived
13
0
Fork 0

i2c/menelaus: Build fix

Fix Menelaus build error, and remove needless "#define DEBUG".

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
David Brownell 2007-08-14 18:37:14 +02:00 committed by Jean Delvare
parent a07ad1cc03
commit c1147cc6d1
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
#define DEBUG
/*
* Copyright (C) 2004 Texas Instruments, Inc.
*
@ -933,7 +932,7 @@ static int menelaus_set_time(struct device *dev, struct rtc_time *t)
return status;
status = menelaus_write_reg(MENELAUS_RTC_WKDAY, BIN2BCD(t->tm_wday));
if (status < 0) {
dev_err(&the_menelaus->client->dev, "rtc write reg %02x",
dev_err(&the_menelaus->client->dev, "rtc write reg %02x "
"err %d\n", MENELAUS_RTC_WKDAY, status);
return status;
}