Fixed missing name and semicolon in two device structs.

This commit is contained in:
Greg King 2017-08-23 01:46:57 -04:00
parent acf831658f
commit 7a1f5358df
2 changed files with 2 additions and 5 deletions

View File

@ -52,7 +52,7 @@ typedef struct {
/* Driver header */
char id[3]; /* Contains 0x65, 0x6d, 0x64 ("emd") */
unsigned char version; /* Interface version */
void* /* Library reference */
void* libreference; /* Library reference */
/* Jump vectors. Note that these are not C callable */
void* install; /* INSTALL routine */
@ -75,6 +75,3 @@ extern em_drv_header* em_drv; /* Pointer to driver */
/* End of em-kernel.h */
#endif

View File

@ -52,7 +52,7 @@ typedef struct {
/* Driver header */
char id[3]; /* Contains 0x6a, 0x6f, 0x79 ("joy") */
unsigned char version; /* Interface version */
void* /* Library reference */
void* libreference; /* Library reference */
/* Jump vectors. Note that these are not C callable */
void* install; /* INSTALL routine */