1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

Move the type definition of ointhand2_t from i386/include/types.h to

i386/isa/isa_device.h.  This is a more appropriate location and
helps restrict <machine/types.h> to only types that exist on all
platforms.
This commit is contained in:
Mike Barcroft 2002-07-09 01:16:18 +00:00
parent 7db8d4d987
commit a6519e64cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99629
2 changed files with 4 additions and 3 deletions

View File

@ -66,7 +66,4 @@ typedef register_t critical_t;
/* Interrupt mask (spl, xxx_imask, etc) */
typedef __uint32_t intrmask_t;
/* Interrupt handler function type. */
typedef void ointhand2_t(int _device_id);
#endif /* !_MACHINE_TYPES_H_ */

View File

@ -48,6 +48,10 @@
*/
#ifdef COMPAT_OLDISA
/* Interrupt handler function type. */
typedef void ointhand2_t(int _device_id);
/*
* Per device structure.
*/