* initial_brightness : Initial value of backlight brightness.
 * period_ns : Platform specific PWM period value. unit is nano.
             Only valid when brightness is pwm input mode.
-* load_new_rom_data :
-       0 : use default configuration data
-       1 : update values of eeprom or eprom registers on loading driver
 * size_program : Total size of lp855x_rom_data.
 * rom_data : List of new eeprom/eprom registers.
 
        .name = "lcd-bl",
        .device_control = I2C_CONFIG(LP8552),
        .initial_brightness = INITIAL_BRT,
-       .load_new_rom_data = 1,
        .size_program = ARRAY_SIZE(lp8552_eeprom_arr),
        .rom_data = lp8552_eeprom_arr,
 };
 
        if (ret)
                goto err;
 
-       if (pd->load_new_rom_data && pd->size_program) {
+       if (pd->size_program > 0) {
                for (i = 0; i < pd->size_program; i++) {
                        addr = pd->rom_data[i].addr;
                        val = pd->rom_data[i].val;
 
  * @initial_brightness : initial value of backlight brightness
  * @period_ns : platform specific pwm period value. unit is nano.
                Only valid when mode is PWM_BASED.
- * @load_new_rom_data :
-       0 : use default configuration data
-       1 : update values of eeprom or eprom registers on loading driver
  * @size_program : total size of lp855x_rom_data
  * @rom_data : list of new eeprom/eprom registers
  */
        u8 device_control;
        u8 initial_brightness;
        unsigned int period_ns;
-       u8 load_new_rom_data;
        int size_program;
        struct lp855x_rom_data *rom_data;
 };