ide-no.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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