jazz_esp.c (39fe5434cb9de5da40510028b17b96bc4eb312b3) | jazz_esp.c (ecc1241e80a0bdc854b1602a44be3ad106753d4f) |
---|---|
1/* jazz_esp.c: ESP front-end for MIPS JAZZ systems. 2 * 3 * Copyright (C) 2007 Thomas Bogend�rfer (tsbogend@alpha.frankende) 4 */ 5 6#include <linux/kernel.h> 7#include <linux/types.h> 8#include <linux/module.h> --- 203 unchanged lines hidden (view full) --- 212 esp->command_block, 213 esp->command_block_dma); 214 215 scsi_host_put(esp->host); 216 217 return 0; 218} 219 | 1/* jazz_esp.c: ESP front-end for MIPS JAZZ systems. 2 * 3 * Copyright (C) 2007 Thomas Bogend�rfer (tsbogend@alpha.frankende) 4 */ 5 6#include <linux/kernel.h> 7#include <linux/types.h> 8#include <linux/module.h> --- 203 unchanged lines hidden (view full) --- 212 esp->command_block, 213 esp->command_block_dma); 214 215 scsi_host_put(esp->host); 216 217 return 0; 218} 219 |
220/* work with hotplug and coldplug */ 221MODULE_ALIAS("platform:jazz_esp"); 222 |
|
220static struct platform_driver esp_jazz_driver = { 221 .probe = esp_jazz_probe, 222 .remove = __devexit_p(esp_jazz_remove), 223 .driver = { 224 .name = "jazz_esp", | 223static struct platform_driver esp_jazz_driver = { 224 .probe = esp_jazz_probe, 225 .remove = __devexit_p(esp_jazz_remove), 226 .driver = { 227 .name = "jazz_esp", |
228 .owner = THIS_MODULE, |
|
225 }, 226}; 227 228static int __init jazz_esp_init(void) 229{ 230 return platform_driver_register(&esp_jazz_driver); 231} 232 --- 12 unchanged lines hidden --- | 229 }, 230}; 231 232static int __init jazz_esp_init(void) 233{ 234 return platform_driver_register(&esp_jazz_driver); 235} 236 --- 12 unchanged lines hidden --- |