aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-06-18 14:13:59 -0400
committerLee Jones <lee.jones@linaro.org>2014-07-09 09:58:15 -0400
commit2ce701ae4e351d9407ec0b30f5f9dd56b6de4292 (patch)
treee753855f8099d698bbce863eba50359882c306b9
parentee98662ec914a23ab826b0c83797aa9414f737bc (diff)
mfd: cros_ec: Allow static din/dout buffers with cros_ec_register()
The lower-level driver may want to provide its own buffers. If so, there's no need to allocate new ones. This already happens to work just fine (since we check for size of 0 and use devm allocation), but it's good to document it. [dianders: Resolved conflicts; documented that no code changes needed on mainline] Signed-off-by: Bill Richardson <wfrichar@chromium.org> Signed-off-by: Doug Anderson <dianders@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--include/linux/mfd/cros_ec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_ec.h
index 7e9fe6e98d2f..2ee3190b691c 100644
--- a/include/linux/mfd/cros_ec.h
+++ b/include/linux/mfd/cros_ec.h
@@ -68,8 +68,8 @@ struct cros_ec_msg {
68 * We use this alignment to keep ARM and x86 happy. Probably word 68 * We use this alignment to keep ARM and x86 happy. Probably word
69 * alignment would be OK, there might be a small performance advantage 69 * alignment would be OK, there might be a small performance advantage
70 * to using dword. 70 * to using dword.
71 * @din_size: size of din buffer 71 * @din_size: size of din buffer to allocate (zero to use static din)
72 * @dout_size: size of dout buffer 72 * @dout_size: size of dout buffer to allocate (zero to use static dout)
73 * @command_send: send a command 73 * @command_send: send a command
74 * @command_recv: receive a command 74 * @command_recv: receive a command
75 * @ec_name: name of EC device (e.g. 'chromeos-ec') 75 * @ec_name: name of EC device (e.g. 'chromeos-ec')