int                      sctbl_width_per_color;
        int                      sctbl_aligned_width_per_color;
        int                      sctbl_height;
-       int                      sctbl_legacy_width_per_color;
-       int                      sctbl_legacy_height;
        struct ia_css_sdis_info  dis;
        struct ia_css_resolution dvs_envelope;
        bool                     online;
 
                        binary->sctbl_width_per_color = _ISP2401_SCTBL_WIDTH_PER_COLOR(isp_internal_width, s3a_log_deci);
                        binary->sctbl_aligned_width_per_color = SH_CSS_MAX_SCTBL_ALIGNED_WIDTH_PER_COLOR;
                        binary->sctbl_height = _ISP2401_SCTBL_HEIGHT(isp_internal_height, s3a_log_deci);
-                       binary->sctbl_legacy_width_per_color  = _ISP_SCTBL_LEGACY_WIDTH_PER_COLOR(sc_3a_dis_padded_width, s3a_log_deci);
-                       binary->sctbl_legacy_height = _ISP_SCTBL_LEGACY_HEIGHT(sc_3a_dis_height, s3a_log_deci);
                }
        } else
        {
                binary->sctbl_width_per_color         = 0;
                binary->sctbl_aligned_width_per_color = 0;
                binary->sctbl_height                  = 0;
-               if (IS_ISP2401) {
-                       binary->sctbl_legacy_width_per_color  = 0;
-                       binary->sctbl_legacy_height           = 0;
-               }
        }
        ia_css_sdis_init_info(&binary->dis,
                              sc_3a_dis_width,
 
 
        if (!in_table) {
                sh_css_params_shading_id_table_generate(target_table,
-                                                       binary->sctbl_legacy_width_per_color,
-                                                       binary->sctbl_legacy_height);
+                                                       binary->sctbl_width_per_color,
+                                                       binary->sctbl_height);
                return;
        }
 
 
        /* This prepare_shading_table() function is called only in legacy API (not in new API).
           Then, the legacy shading table width and height should be used. */
-       table_width  = binary->sctbl_legacy_width_per_color;
-       table_height = binary->sctbl_legacy_height;
+       table_width  = binary->sctbl_width_per_color;
+       table_height = binary->sctbl_height;
 
        result = ia_css_shading_table_alloc(table_width, table_height);
        if (!result) {