V4L/DVB (10850): cx18: Use strlcpy() instead of strncpy() for temp eeprom i2c_client setup

Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
diff --git a/drivers/media/video/cx18/cx18-driver.c b/drivers/media/video/cx18/cx18-driver.c
index 0d24e22..210c68a 100644
--- a/drivers/media/video/cx18/cx18-driver.c
+++ b/drivers/media/video/cx18/cx18-driver.c
@@ -273,8 +273,7 @@
 	u8 eedata[256];
 
 	memset(&c, 0, sizeof(c));
-	strncpy(c.name, "cx18 tveeprom tmp", sizeof(c.name));
-	c.name[sizeof(c.name)-1] = '\0';
+	strlcpy(c.name, "cx18 tveeprom tmp", sizeof(c.name));
 	c.adapter = &cx->i2c_adap[0];
 	c.addr = 0xA0 >> 1;