Commit a3f84eac authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Correct kernel-doc comment with incorrect parameters documented

From: "Randy.Dunlap" <rddunlap@osdl.org>

From: Michael Still <mikal@stillhq.com>

Correct kernel-doc comment with incorrect parameters documented
parent d386fe6e
...@@ -28,7 +28,7 @@ extern int (*rtc_set_time)(const time_t); ...@@ -28,7 +28,7 @@ extern int (*rtc_set_time)(const time_t);
/** /**
* aica_rtc_gettimeofday - Get the time from the AICA RTC * aica_rtc_gettimeofday - Get the time from the AICA RTC
* @tv: pointer to resulting timeval * @ts: pointer to resulting timespec
* *
* Grabs the current RTC seconds counter and adjusts it to the Unix Epoch. * Grabs the current RTC seconds counter and adjusts it to the Unix Epoch.
*/ */
...@@ -51,7 +51,7 @@ void aica_rtc_gettimeofday(struct timespec *ts) { ...@@ -51,7 +51,7 @@ void aica_rtc_gettimeofday(struct timespec *ts) {
/** /**
* aica_rtc_settimeofday - Set the AICA RTC to the current time * aica_rtc_settimeofday - Set the AICA RTC to the current time
* @tv: contains the timeval to set * @secs: contains the time_t to set
* *
* Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter. * Adjusts the given @tv to the AICA Epoch and sets the RTC seconds counter.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment