summaryrefslogtreecommitdiffstats
path: root/sys/dev/aic7xxx/aicasm/aicasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/aic7xxx/aicasm/aicasm.c')
-rw-r--r--sys/dev/aic7xxx/aicasm/aicasm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/aic7xxx/aicasm/aicasm.c b/sys/dev/aic7xxx/aicasm/aicasm.c
index a7f9c85..9af5c83 100644
--- a/sys/dev/aic7xxx/aicasm/aicasm.c
+++ b/sys/dev/aic7xxx/aicasm/aicasm.c
@@ -42,14 +42,14 @@
#include "sequencer.h"
typedef struct patch {
- STAILQ_ENTRY(struct patch) links;
+ STAILQ_ENTRY(patch) links;
int patch_func;
u_int begin;
u_int skip_instr;
u_int skip_patch;
} patch_t;
-STAILQ_HEAD(patch_list, struct patch) patches;
+STAILQ_HEAD(patch_list, patch) patches;
static void usage(void);
static void back_patch(void);
@@ -70,7 +70,7 @@ FILE *regfile;
char *listfilename;
FILE *listfile;
-static STAILQ_HEAD(, struct instruction) seq_program;
+static STAILQ_HEAD(,instruction) seq_program;
struct scope_list scope_stack;
symlist_t patch_functions;
OpenPOWER on IntegriCloud