提交 c3530094 编写于 作者: A Andrzej Hajda 提交者: Alexandre Belloni

rtc: opal: fix type of token

The variable can take signed values.

The problem has been detected using proposed semantic patch
scripts/coccinelle/tests/unsigned_lesser_than_zero.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2038576Signed-off-by: NAndrzej Hajda <a.hajda@samsung.com>
Signed-off-by: NAlexandre Belloni <alexandre.belloni@free-electrons.com>
上级 fa395fb8
...@@ -152,10 +152,10 @@ static int opal_get_tpo_time(struct device *dev, struct rtc_wkalrm *alarm) ...@@ -152,10 +152,10 @@ static int opal_get_tpo_time(struct device *dev, struct rtc_wkalrm *alarm)
/* Set Timed Power-On */ /* Set Timed Power-On */
static int opal_set_tpo_time(struct device *dev, struct rtc_wkalrm *alarm) static int opal_set_tpo_time(struct device *dev, struct rtc_wkalrm *alarm)
{ {
u64 h_m_s_ms = 0, token; u64 h_m_s_ms = 0;
struct opal_msg msg; struct opal_msg msg;
u32 y_m_d = 0; u32 y_m_d = 0;
int rc; int token, rc;
tm_to_opal(&alarm->time, &y_m_d, &h_m_s_ms); tm_to_opal(&alarm->time, &y_m_d, &h_m_s_ms);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册