Lines Matching refs:hw_config
57 struct address_info *hw_config; in probe_one() local
143 hw_config = kzalloc(sizeof(struct address_info), GFP_KERNEL); in probe_one()
144 if(hw_config == NULL) in probe_one()
150 pci_set_drvdata(pdev, hw_config); in probe_one()
152 hw_config->io_base = io; in probe_one()
153 hw_config->irq = irq; in probe_one()
154 hw_config->dma = dma8; in probe_one()
155 hw_config->dma2 = dma16; in probe_one()
156 hw_config->name = "Cyrix XpressAudio"; in probe_one()
157 hw_config->driver_use_1 = SB_NO_MIDI | SB_PCI_IRQ; in probe_one()
162 if(sb_dsp_detect(hw_config, 0, 0, NULL)==0) in probe_one()
171 if(sb_dsp_init(hw_config, THIS_MODULE)) in probe_one()
181 kfree(hw_config); in probe_one()
187 struct address_info *hw_config = pci_get_drvdata(pdev); in remove_one() local
188 sb_dsp_unload(hw_config, 0); in remove_one()
189 kfree(hw_config); in remove_one()