[BACK]Return to libsa.h CVS log [TXT][DIR] Up to [local] / sys / arch / armish / stand / boot

Annotation of sys/arch/armish/stand/boot/libsa.h, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: libsa.h,v 1.1 2006/07/29 15:01:49 kettenis Exp $      */
        !             2:
        !             3: /*
        !             4:  * Copyright (c) 2006 Mark Kettenis
        !             5:  *
        !             6:  * Permission to use, copy, modify, and distribute this software for any
        !             7:  * purpose with or without fee is hereby granted, provided that the above
        !             8:  * copyright notice and this permission notice appear in all copies.
        !             9:  *
        !            10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
        !            11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
        !            12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
        !            13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
        !            14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
        !            15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
        !            16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
        !            17:  */
        !            18:
        !            19: #include <lib/libsa/stand.h>
        !            20:
        !            21: #define DEFAULT_KERNEL_ADDRESS 0
        !            22:
        !            23: #ifdef DEBUG
        !            24: #define DPRINTF(x)      printf x;
        !            25: #else
        !            26: #define DPRINTF(x)
        !            27: #endif
        !            28:
        !            29: /*
        !            30:  * com
        !            31:  */
        !            32: void com_probe(struct consdev *);
        !            33: void com_init(struct consdev *);
        !            34: int com_getc(dev_t);
        !            35: void com_putc(dev_t, int);
        !            36:
        !            37: /*
        !            38:  * wd
        !            39:  */
        !            40: int wdstrategy(void *, int, daddr_t, size_t, void *, size_t *);
        !            41: int wdopen(struct open_file *, ...);
        !            42: int wdclose(struct open_file *);

CVSweb