return 0;
 }
 
+static int __init init_8226(struct tsens_priv *priv)
+{
+       priv->sensor[0].slope = 2901;
+       priv->sensor[1].slope = 2846;
+       priv->sensor[2].slope = 3038;
+       priv->sensor[3].slope = 2955;
+       priv->sensor[4].slope = 2901;
+       priv->sensor[5].slope = 2846;
+
+       return init_common(priv);
+}
+
 static int __init init_8939(struct tsens_priv *priv) {
        priv->sensor[0].slope = 2911;
        priv->sensor[1].slope = 2789;
        return init_common(priv);
 }
 
-/* v0.1: 8916, 8939, 8974, 9607 */
+/* v0.1: 8226, 8916, 8939, 8974, 9607 */
 
 static struct tsens_features tsens_v0_1_feat = {
        .ver_major      = VER_0_1,
        .get_temp       = get_temp_common,
 };
 
+static const struct tsens_ops ops_8226 = {
+       .init           = init_8226,
+       .calibrate      = tsens_calibrate_common,
+       .get_temp       = get_temp_common,
+};
+
+struct tsens_plat_data data_8226 = {
+       .num_sensors    = 6,
+       .ops            = &ops_8226,
+       .feat           = &tsens_v0_1_feat,
+       .fields = tsens_v0_1_regfields,
+};
+
 static const struct tsens_ops ops_8916 = {
        .init           = init_common,
        .calibrate      = calibrate_8916,
 
        }, {
                .compatible = "qcom,mdm9607-tsens",
                .data = &data_9607,
+       }, {
+               .compatible = "qcom,msm8226-tsens",
+               .data = &data_8226,
        }, {
                .compatible = "qcom,msm8916-tsens",
                .data = &data_8916,
 
 extern struct tsens_plat_data data_8960;
 
 /* TSENS v0.1 targets */
-extern struct tsens_plat_data data_8916, data_8939, data_8974, data_9607;
+extern struct tsens_plat_data data_8226, data_8916, data_8939, data_8974, data_9607;
 
 /* TSENS v1 targets */
 extern struct tsens_plat_data data_tsens_v1, data_8976, data_8956;