do nothing obio_probe_byte()

This commit is contained in:
glass 1994-03-16 04:35:36 +00:00
parent 7d3c6bd847
commit 8db6d0d6fb
3 changed files with 21 additions and 4 deletions

View File

@ -28,7 +28,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/if_le_subr.c,v 1.3 1994/02/23 08:28:42 glass Exp $
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/if_le_subr.c,v 1.4 1994/03/16 04:35:36 glass Exp $
* gwr: uncomment obio_probe_byte
*/
#include <sys/param.h>
@ -111,5 +112,5 @@ int le_machdep_match(parent, cf, args)
struct obio_cf_loc *obio_loc = (struct obio_cf_loc *) CFDATA_LOC(cf);
le_addr = OBIO_DEFAULT_PARAM(caddr_t, obio_loc->obio_addr, OBIO_AMD_ETHER);
return /* !obio_probe_byte(le_addr)*/ 1;
return !obio_probe_byte(le_addr);
}

View File

@ -28,7 +28,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/obio.c,v 1.6 1994/03/01 08:07:15 glass Exp $
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/obio.c,v 1.7 1994/03/16 04:35:37 glass Exp $
* Added stub for obio_probe_byte() -gwr
*/
#include <sys/systm.h>
#include <sys/device.h>
@ -153,3 +154,10 @@ caddr_t obio_alloc(obio_addr, obio_size, obio_flags)
return (caddr_t) va;
}
int
obio_probe_byte(oba)
caddr_t oba; /* OBIO address to probe */
{
/* XXX - Not yet... */
return 0;
}

View File

@ -28,7 +28,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Header: /cvsroot/src/sys/arch/sun3/sun3/obio.c,v 1.6 1994/03/01 08:07:15 glass Exp $
* $Header: /cvsroot/src/sys/arch/sun3/sun3/obio.c,v 1.7 1994/03/16 04:35:37 glass Exp $
* Added stub for obio_probe_byte() -gwr
*/
#include <sys/systm.h>
#include <sys/device.h>
@ -153,3 +154,10 @@ caddr_t obio_alloc(obio_addr, obio_size, obio_flags)
return (caddr_t) va;
}
int
obio_probe_byte(oba)
caddr_t oba; /* OBIO address to probe */
{
/* XXX - Not yet... */
return 0;
}