mesh.c (e37c83c06c2690157a989df40dc99a6b61c9ea15) | mesh.c (c2cdf6aba0dfcfb54be646ab630c1bccd180e890) |
---|---|
1/* 2 * SCSI low-level driver for the MESH (Macintosh Enhanced SCSI Hardware) 3 * bus adaptor found on Power Macintosh computers. 4 * We assume the MESH is connected to a DBDMA (descriptor-based DMA) 5 * controller. 6 * 7 * Paul Mackerras, August 1996. 8 * Copyright (C) 1996 Paul Mackerras. --- 2022 unchanged lines hidden (view full) --- 2031 .compatible = "chrp,mesh0" 2032 }, 2033 {}, 2034}; 2035MODULE_DEVICE_TABLE (of, mesh_match); 2036 2037static struct macio_driver mesh_driver = 2038{ | 1/* 2 * SCSI low-level driver for the MESH (Macintosh Enhanced SCSI Hardware) 3 * bus adaptor found on Power Macintosh computers. 4 * We assume the MESH is connected to a DBDMA (descriptor-based DMA) 5 * controller. 6 * 7 * Paul Mackerras, August 1996. 8 * Copyright (C) 1996 Paul Mackerras. --- 2022 unchanged lines hidden (view full) --- 2031 .compatible = "chrp,mesh0" 2032 }, 2033 {}, 2034}; 2035MODULE_DEVICE_TABLE (of, mesh_match); 2036 2037static struct macio_driver mesh_driver = 2038{ |
2039 .name = "mesh", 2040 .match_table = mesh_match, | 2039 .driver = { 2040 .name = "mesh", 2041 .owner = THIS_MODULE, 2042 .of_match_table = mesh_match, 2043 }, |
2041 .probe = mesh_probe, 2042 .remove = mesh_remove, 2043 .shutdown = mesh_shutdown, 2044#ifdef CONFIG_PM 2045 .suspend = mesh_suspend, 2046 .resume = mesh_resume, 2047#endif 2048}; --- 25 unchanged lines hidden --- | 2044 .probe = mesh_probe, 2045 .remove = mesh_remove, 2046 .shutdown = mesh_shutdown, 2047#ifdef CONFIG_PM 2048 .suspend = mesh_suspend, 2049 .resume = mesh_resume, 2050#endif 2051}; --- 25 unchanged lines hidden --- |