Lines Matching refs:option
190 struct pnp_option *option) in pnp_print_option() argument
192 switch (option->type) { in pnp_print_option()
194 pnp_print_port(buffer, space, &option->u.port); in pnp_print_option()
197 pnp_print_mem(buffer, space, &option->u.mem); in pnp_print_option()
200 pnp_print_irq(buffer, space, &option->u.irq); in pnp_print_option()
203 pnp_print_dma(buffer, space, &option->u.dma); in pnp_print_option()
213 struct pnp_option *option; in options_show() local
225 list_for_each_entry(option, &dev->options, list) { in options_show()
226 if (pnp_option_is_dependent(option)) { in options_show()
228 if (!dep || pnp_option_set(option) != set) { in options_show()
229 set = pnp_option_set(option); in options_show()
233 pnp_option_priority_name(option)); in options_show()
239 pnp_print_option(buffer, indent, option); in options_show()