Searched refs:mod_data (Results 1 – 3 of 3) sorted by relevance
/linux-3.4.99/drivers/usb/gadget/ |
D | file_storage.c | 329 } mod_data = { // Default values variable 342 module_param_array_named(file, mod_data.file, charp, &mod_data.num_filenames, 346 module_param_named(serial, mod_data.serial, charp, S_IRUGO); 349 module_param_array_named(ro, mod_data.ro, bool, &mod_data.num_ros, S_IRUGO); 352 module_param_array_named(nofua, mod_data.nofua, bool, &mod_data.num_nofuas, 356 module_param_named(luns, mod_data.nluns, uint, S_IRUGO); 359 module_param_named(removable, mod_data.removable, bool, S_IRUGO); 362 module_param_named(stall, mod_data.can_stall, bool, S_IRUGO); 365 module_param_named(cdrom, mod_data.cdrom, bool, S_IRUGO); 372 module_param_named(transport, mod_data.transport_parm, charp, S_IRUGO); [all …]
|
D | mass_storage.c | 91 static struct fsg_module_parameters mod_data = { variable 94 FSG_MODULE_PARAMETERS(/* no prefix */, mod_data); 121 fsg_config_from_params(&config, &mod_data); in msg_do_config()
|
D | dummy_hcd.c | 68 static struct dummy_hcd_module_parameters mod_data = { variable 72 module_param_named(is_super_speed, mod_data.is_super_speed, bool, S_IRUGO); 74 module_param_named(is_high_speed, mod_data.is_high_speed, bool, S_IRUGO); 829 if (mod_data.is_super_speed) in dummy_pullup() 831 else if (mod_data.is_high_speed) in dummy_pullup() 2501 if (!mod_data.is_super_speed) in dummy_hcd_probe() 2512 if (mod_data.is_super_speed) { in dummy_hcd_probe() 2609 if (!mod_data.is_high_speed && mod_data.is_super_speed) in init() 2630 (!the_controller.ss_hcd && mod_data.is_super_speed)) { in init()
|