kopia lustrzana https://gitlab.com/sane-project/backends
genesys: Remove unused argument out of sanei_genesys_asic_init
rodzic
0992b379c8
commit
40b4852eb7
|
@ -1504,7 +1504,7 @@ void CommandSetGl124::init(Genesys_Device* dev) const
|
|||
DBG_INIT ();
|
||||
DBG_HELPER(dbg);
|
||||
|
||||
sanei_genesys_asic_init(dev, 0);
|
||||
sanei_genesys_asic_init(dev);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -2887,7 +2887,7 @@ void CommandSetGl841::init(Genesys_Device* dev) const
|
|||
{
|
||||
DBG_INIT();
|
||||
DBG_HELPER(dbg);
|
||||
sanei_genesys_asic_init(dev, 0);
|
||||
sanei_genesys_asic_init(dev);
|
||||
}
|
||||
|
||||
void CommandSetGl841::update_hardware_sensors(Genesys_Scanner* s) const
|
||||
|
|
|
@ -1923,7 +1923,7 @@ void CommandSetGl843::init(Genesys_Device* dev) const
|
|||
DBG_INIT ();
|
||||
DBG_HELPER(dbg);
|
||||
|
||||
sanei_genesys_asic_init(dev, 0);
|
||||
sanei_genesys_asic_init(dev);
|
||||
}
|
||||
|
||||
void CommandSetGl843::update_hardware_sensors(Genesys_Scanner* s) const
|
||||
|
|
|
@ -1336,7 +1336,7 @@ void CommandSetGl846::init(Genesys_Device* dev) const
|
|||
DBG_INIT ();
|
||||
DBG_HELPER(dbg);
|
||||
|
||||
sanei_genesys_asic_init(dev, 0);
|
||||
sanei_genesys_asic_init(dev);
|
||||
}
|
||||
|
||||
void CommandSetGl846::update_hardware_sensors(Genesys_Scanner* s) const
|
||||
|
|
|
@ -1222,7 +1222,7 @@ void CommandSetGl847::init(Genesys_Device* dev) const
|
|||
DBG_INIT ();
|
||||
DBG_HELPER(dbg);
|
||||
|
||||
sanei_genesys_asic_init(dev, 0);
|
||||
sanei_genesys_asic_init(dev);
|
||||
}
|
||||
|
||||
void CommandSetGl847::update_hardware_sensors(Genesys_Scanner* s) const
|
||||
|
|
|
@ -1415,7 +1415,7 @@ std::uint8_t compute_frontend_gain(float value, float target_value,
|
|||
* @param dev device to initialize
|
||||
* @param max_regs umber of maximum used registers
|
||||
*/
|
||||
void sanei_genesys_asic_init(Genesys_Device* dev, bool /*max_regs*/)
|
||||
void sanei_genesys_asic_init(Genesys_Device* dev)
|
||||
{
|
||||
DBG_HELPER(dbg);
|
||||
|
||||
|
|
|
@ -383,7 +383,7 @@ bool get_registers_gain4_bit(AsicType asic_type, const Genesys_Register_Set& reg
|
|||
|
||||
extern void sanei_genesys_wait_for_home(Genesys_Device* dev);
|
||||
|
||||
extern void sanei_genesys_asic_init(Genesys_Device* dev, bool cold);
|
||||
extern void sanei_genesys_asic_init(Genesys_Device* dev);
|
||||
|
||||
void scanner_start_action(Genesys_Device& dev, bool start_motor);
|
||||
void scanner_stop_action(Genesys_Device& dev);
|
||||
|
|
Ładowanie…
Reference in New Issue