[PATCH] ASoC: fsl: expand the size of the name in fsl_ssi_private struct
Nicolin Chen
b42378 at freescale.com
Thu May 23 16:26:36 EST 2013
strcpy(ssi_private->name, p) in probe() sets "name" by "p", gotten from dts,
while the length of "p", if the devicetree node name of SSI is commonly set,
would always be larger than 1 char size, so need a larger size for "name".
Signed-off-by: Nicolin Chen <b42378 at freescale.com>
---
sound/soc/fsl/fsl_ssi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 2f2d837..b6a5f94 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -152,5 +152,5 @@ struct fsl_ssi_private {
} stats;
- char name[1];
+ char name[32];
};
--
1.7.1
More information about the Linuxppc-dev
mailing list