ide-no.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: ide-no.c,v 1.2 1998/06/30 00:21:54 ralf Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Stub IDE routines to keep Linux from crashing on machine which don't
  8.  * have IDE like the Indy.
  9.  *
  10.  * Copyright (C) 1998, 1999 by Ralf Baechle
  11.  */
  12. #include <linux/hdreg.h>
  13. #include <linux/kernel.h>
  14. #include <linux/ide.h>
  15. #include <asm/hdreg.h>
  16. #include <asm/ptrace.h>
  17. static int no_ide_default_irq(ide_ioreg_t base)
  18. {
  19. return 0;
  20. }
  21. static ide_ioreg_t no_ide_default_io_base(int index)
  22. {
  23. return 0;
  24. }
  25. static void no_ide_init_hwif_ports (hw_regs_t *hw, ide_ioreg_t data_port,
  26.                                     ide_ioreg_t ctrl_port, int *irq)
  27. {
  28. }
  29. static int no_ide_request_irq(unsigned int irq,
  30.                               void (*handler)(int,void *, struct pt_regs *),
  31.                               unsigned long flags, const char *device,
  32.                               void *dev_id)
  33. {
  34. panic("no_no_ide_request_irq called - shouldn't happen");
  35. }
  36. static void no_ide_free_irq(unsigned int irq, void *dev_id)
  37. {
  38. panic("no_ide_free_irq called - shouldn't happen");
  39. }
  40. static int no_ide_check_region(ide_ioreg_t from, unsigned int extent)
  41. {
  42. panic("no_ide_check_region called - shouldn't happen");
  43. }
  44. static void no_ide_request_region(ide_ioreg_t from, unsigned int extent,
  45.                                     const char *name)
  46. {
  47. panic("no_ide_request_region called - shouldn't happen");
  48. }
  49. static void no_ide_release_region(ide_ioreg_t from, unsigned int extent)
  50. {
  51. panic("no_ide_release_region called - shouldn't happen");
  52. }
  53. struct ide_ops no_ide_ops = {
  54. &no_ide_default_irq,
  55. &no_ide_default_io_base,
  56. &no_ide_init_hwif_ports,
  57. &no_ide_request_irq,
  58. &no_ide_free_irq,
  59. &no_ide_check_region,
  60. &no_ide_request_region,
  61. &no_ide_release_region
  62. };