diff options
-rw-r--r-- | sound/oss/opl3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/opl3.c b/sound/oss/opl3.c index 4709e592e2cc..607cee4d545e 100644 --- a/sound/oss/opl3.c +++ b/sound/oss/opl3.c | |||
@@ -52,7 +52,7 @@ struct voice_info | |||
52 | int panning; /* 0xffff means not set */ | 52 | int panning; /* 0xffff means not set */ |
53 | }; | 53 | }; |
54 | 54 | ||
55 | typedef struct opl_devinfo | 55 | struct opl_devinfo |
56 | { | 56 | { |
57 | int base; | 57 | int base; |
58 | int left_io, right_io; | 58 | int left_io, right_io; |
@@ -73,7 +73,7 @@ typedef struct opl_devinfo | |||
73 | unsigned char cmask; | 73 | unsigned char cmask; |
74 | 74 | ||
75 | int is_opl4; | 75 | int is_opl4; |
76 | } opl_devinfo; | 76 | }; |
77 | 77 | ||
78 | static struct opl_devinfo *devc = NULL; | 78 | static struct opl_devinfo *devc = NULL; |
79 | 79 | ||