Subversion Repositories HelenOS

Rev

Rev 4163 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (c) 1987,1997, 2006, Vrije Universiteit, Amsterdam, The Netherlands All rights reserved. Redistribution and use of the MINIX 3 operating system in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  3.  *
  4.  * * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  5.  * * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  6.  * * Neither the name of the Vrije Universiteit nor the names of the software authors or contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  7.  * * Any deviations from these conditions require written permission from the copyright holder in advance
  8.  *
  9.  *
  10.  * Disclaimer
  11.  *
  12.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR
  13.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  14.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15.  * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ANY AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  16.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  17.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  18.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  19.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  20.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  21.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22.  *
  23.  * Changes:
  24.  *  2009 Lukas Mejdrech ported to HelenOS
  25.  */
  26.  
  27. /** @addtogroup dp8390
  28.  *  @{
  29.  */
  30.  
  31. #ifndef __NET_NETIF_DP8390_CONFIG_H__
  32. #define __NET_NETIF_DP8390_CONFIG_H__
  33.  
  34. #include "dp8390_port.h"
  35.  
  36. /*
  37. local.h
  38. */
  39.  
  40. #define ENABLE_WDETH 0
  41. #define ENABLE_NE2000 1
  42. #define ENABLE_3C503 0
  43. #define ENABLE_PCI 0
  44.  
  45. struct dpeth;
  46.  
  47. /* 3c503.c */
  48. _PROTOTYPE( int el2_probe, (struct dpeth* dep)              );
  49.  
  50. /* ne2000.c */
  51. _PROTOTYPE( int ne_probe, (struct dpeth *dep)               );
  52. //_PROTOTYPE( void ne_init, (struct dpeth *dep)             );
  53.  
  54. /* rtl8029.c */
  55. _PROTOTYPE( int rtl_probe, (struct dpeth *dep)              );
  56.  
  57. /* wdeth.c */
  58. _PROTOTYPE( int wdeth_probe, (struct dpeth* dep)                );
  59.  
  60. #endif
  61.  
  62. /** @}
  63.  */
  64.