Lines Matching refs:option
188 struct pnp_option *option) in pnp_print_option() argument
190 switch (option->type) { in pnp_print_option()
192 pnp_print_port(buffer, space, &option->u.port); in pnp_print_option()
195 pnp_print_mem(buffer, space, &option->u.mem); in pnp_print_option()
198 pnp_print_irq(buffer, space, &option->u.irq); in pnp_print_option()
201 pnp_print_dma(buffer, space, &option->u.dma); in pnp_print_option()
211 struct pnp_option *option; in options_show() local
223 list_for_each_entry(option, &dev->options, list) { in options_show()
224 if (pnp_option_is_dependent(option)) { in options_show()
226 if (!dep || pnp_option_set(option) != set) { in options_show()
227 set = pnp_option_set(option); in options_show()
231 pnp_option_priority_name(option)); in options_show()
237 pnp_print_option(buffer, indent, option); in options_show()