diff options
Diffstat (limited to 'drivers/firewire/fw-iso.c')
-rw-r--r-- | drivers/firewire/fw-iso.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/firewire/fw-iso.c b/drivers/firewire/fw-iso.c index 2b640e9be6de..bcbe794a3ea5 100644 --- a/drivers/firewire/fw-iso.c +++ b/drivers/firewire/fw-iso.c | |||
@@ -126,7 +126,6 @@ fw_iso_context_create(struct fw_card *card, int type, | |||
126 | 126 | ||
127 | return ctx; | 127 | return ctx; |
128 | } | 128 | } |
129 | EXPORT_SYMBOL(fw_iso_context_create); | ||
130 | 129 | ||
131 | void fw_iso_context_destroy(struct fw_iso_context *ctx) | 130 | void fw_iso_context_destroy(struct fw_iso_context *ctx) |
132 | { | 131 | { |
@@ -134,14 +133,12 @@ void fw_iso_context_destroy(struct fw_iso_context *ctx) | |||
134 | 133 | ||
135 | card->driver->free_iso_context(ctx); | 134 | card->driver->free_iso_context(ctx); |
136 | } | 135 | } |
137 | EXPORT_SYMBOL(fw_iso_context_destroy); | ||
138 | 136 | ||
139 | int | 137 | int |
140 | fw_iso_context_start(struct fw_iso_context *ctx, int cycle, int sync, int tags) | 138 | fw_iso_context_start(struct fw_iso_context *ctx, int cycle, int sync, int tags) |
141 | { | 139 | { |
142 | return ctx->card->driver->start_iso(ctx, cycle, sync, tags); | 140 | return ctx->card->driver->start_iso(ctx, cycle, sync, tags); |
143 | } | 141 | } |
144 | EXPORT_SYMBOL(fw_iso_context_start); | ||
145 | 142 | ||
146 | int | 143 | int |
147 | fw_iso_context_queue(struct fw_iso_context *ctx, | 144 | fw_iso_context_queue(struct fw_iso_context *ctx, |
@@ -153,11 +150,9 @@ fw_iso_context_queue(struct fw_iso_context *ctx, | |||
153 | 150 | ||
154 | return card->driver->queue_iso(ctx, packet, buffer, payload); | 151 | return card->driver->queue_iso(ctx, packet, buffer, payload); |
155 | } | 152 | } |
156 | EXPORT_SYMBOL(fw_iso_context_queue); | ||
157 | 153 | ||
158 | int | 154 | int |
159 | fw_iso_context_stop(struct fw_iso_context *ctx) | 155 | fw_iso_context_stop(struct fw_iso_context *ctx) |
160 | { | 156 | { |
161 | return ctx->card->driver->stop_iso(ctx); | 157 | return ctx->card->driver->stop_iso(ctx); |
162 | } | 158 | } |
163 | EXPORT_SYMBOL(fw_iso_context_stop); | ||