diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-09-29 07:22:46 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-09-29 07:22:46 +0000 |
commit | bfb83460738591bca3e1051bfa9c9a03de48708c (patch) | |
tree | 4582d1efda73b1bf54f7401d649440be084be305 /sys/arch/hppa/stand/libsa | |
parent | fd472915ccf21031369c540b1d574a5c50a12bd7 (diff) |
sync
Diffstat (limited to 'sys/arch/hppa/stand/libsa')
-rw-r--r-- | sys/arch/hppa/stand/libsa/libsa.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sys/arch/hppa/stand/libsa/libsa.h b/sys/arch/hppa/stand/libsa/libsa.h index 008106efb93..d5d91a826f8 100644 --- a/sys/arch/hppa/stand/libsa/libsa.h +++ b/sys/arch/hppa/stand/libsa/libsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libsa.h,v 1.4 1998/07/13 03:52:12 mickey Exp $ */ +/* $OpenBSD: libsa.h,v 1.5 1998/09/29 07:22:45 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -38,18 +38,23 @@ #define DEFAULT_KERNEL_ADDRESS 0x12000 +extern dev_t bootdev; + void pdc_init __P((void)); -void getbinfo __P((void)); +struct pz_device; +struct pz_device *pdc_findev __P((int, int)); + +int iodcstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); -int ctstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); int ctopen __P((struct open_file *, ...)); int ctclose __P((struct open_file *)); -int ctioctl __P((struct open_file *, u_long, void *)); -int dkstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); int dkopen __P((struct open_file *, ...)); int dkclose __P((struct open_file *)); -int dkioctl __P((struct open_file *, u_long, void *)); + +int lfopen __P((struct open_file *, ...)); +int lfstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); +int lfclose __P((struct open_file *)); void ite_probe __P((struct consdev *)); void ite_init __P((struct consdev *)); @@ -60,6 +65,5 @@ void ite_pollc __P((dev_t, int)); void machdep __P((void)); void devboot __P((dev_t, char *)); void fcacheall __P((void)); -void sync_caches __P((void)); extern int debug; |