camera: don't set lens shading parameter for mipi sensor

As the mipi sensor don't have support for lens shading parameter, skip
calling this ioctl.

Change-Id: I3b917c75c1b5a05384741f1a28fede0573e3607a
diff --git a/QualcommCameraHardware.cpp b/QualcommCameraHardware.cpp
index 326a94f..43765ab 100644
--- a/QualcommCameraHardware.cpp
+++ b/QualcommCameraHardware.cpp
@@ -3947,7 +3947,9 @@
 
 status_t QualcommCameraHardware::setLensshadeValue(const CameraParameters& params)
 {
-    if(!strcmp(sensorType->name, "2mp")) {
+    if( (!strcmp(sensorType->name, "2mp")) ||
+        (!strcmp(mSensorInfo.name, "vx6953")) ||
+	(!strcmp(mSensorInfo.name, "VX6953")) ) {
         LOGE("Parameter Rolloff is not supported for this sensor");
         return NO_ERROR;
     }