From 48f19ee8244776a8e7fb47bac1a2b09e9920d035 Mon Sep 17 00:00:00 2001 From: Alex Elder Date: Mon, 11 May 2015 21:16:36 -0500 Subject: [PATCH] greybus: loopback: fix an incorrect comment Fix a comment that incorrectly says the delay between messages is limited to 1024 msec; it actually must be <= 1000 msec. Signed-off-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/loopback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c index 85e2fe7b5d76..e1e40ea44ccf 100644 --- a/drivers/staging/greybus/loopback.c +++ b/drivers/staging/greybus/loopback.c @@ -148,7 +148,7 @@ gb_loopback_ro_attr(error, d); gb_loopback_attr(type, d); /* Size of transfer message payload: 0-4096 bytes */ gb_loopback_attr(size, u); -/* Time to wait between two messages: 0-1024 ms */ +/* Time to wait between two messages: 0-1000 ms */ gb_loopback_attr(ms_wait, d); #define dev_stats_attrs(name) \ -- 2.39.5