diff options
author | Alessandro Zummo <a.zummo@towertech.it> | 2006-04-11 01:54:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-11 09:18:47 -0400 |
commit | d1d65b7712016ca5ff2e44470eb13e772999de94 (patch) | |
tree | 06f6e823cf5ca785f055b129c003c55b9cbdae86 /drivers/rtc/rtc-x1205.c | |
parent | 8289607249ad25ecfc9a3742873fcd8f319d5b09 (diff) |
[PATCH] RTC subsystem: compact error messages
Move registration error message from drivers to core.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Cc: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/rtc/rtc-x1205.c')
-rw-r--r-- | drivers/rtc/rtc-x1205.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-x1205.c b/drivers/rtc/rtc-x1205.c index f3573ef7c3f5..788b6d1f8f2f 100644 --- a/drivers/rtc/rtc-x1205.c +++ b/drivers/rtc/rtc-x1205.c | |||
@@ -544,8 +544,6 @@ static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) | |||
544 | 544 | ||
545 | if (IS_ERR(rtc)) { | 545 | if (IS_ERR(rtc)) { |
546 | err = PTR_ERR(rtc); | 546 | err = PTR_ERR(rtc); |
547 | dev_err(&client->dev, | ||
548 | "unable to register the class device\n"); | ||
549 | goto exit_detach; | 547 | goto exit_detach; |
550 | } | 548 | } |
551 | 549 | ||