mfd: ssbi: Constify buffer in ssbi_write

In preparation for passing a const pointer directly to
ssbi_write() from the regmap APIs.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
Stephen Boyd
2013-12-10 15:35:17 -08:00
committed by Lee Jones
parent bae911a055
commit 5eec14ccf9
2 changed files with 5 additions and 5 deletions

View File

@@ -17,7 +17,7 @@
#include <linux/types.h>
int ssbi_write(struct device *dev, u16 addr, u8 *buf, int len);
int ssbi_write(struct device *dev, u16 addr, const u8 *buf, int len);
int ssbi_read(struct device *dev, u16 addr, u8 *buf, int len);
#endif