21 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/pci.h>
25 #include <linux/slab.h>
49 #define DRIVER_NAME "Hopper"
51 static char *
label[10] = {
69 u32 rst_stat = 0, rst_mask = 0;
129 tasklet_schedule(&mantis->
tasklet);
136 stat &= ~(MANTIS_INT_RISCEN | MANTIS_INT_I2CDONE |
142 MANTIS_INT_IRQ0 | MANTIS_INT_OCERR |
143 MANTIS_INT_PABORT | MANTIS_INT_RIPERR |
144 MANTIS_INT_PPERR | MANTIS_INT_FTRGT |
161 if (mantis ==
NULL) {
235 struct mantis_pci *mantis = pci_get_drvdata(pdev);
255 static struct pci_driver hopper_pci_driver = {
257 .id_table = hopper_pci_table,
258 .probe = hopper_pci_probe,
259 .remove = hopper_pci_remove,
264 return pci_register_driver(&hopper_pci_driver);