blob: 8f59ff3e7a175f12797ad0296e32dc01027afefc [file] [log] [blame]
Markus Grabner705ecec2009-02-27 19:43:04 -08001/*
Markus Grabnere1a164d2010-08-23 01:08:25 +02002 * Line6 Linux USB driver - 0.9.1beta
Markus Grabner705ecec2009-02-27 19:43:04 -08003 *
Markus Grabner1027f472010-08-12 01:35:30 +02004 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
Markus Grabner705ecec2009-02-27 19:43:04 -08005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
9 *
10 */
11
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +000012#include <linux/slab.h>
Markus Grabner705ecec2009-02-27 19:43:04 -080013#include <sound/core.h>
14#include <sound/pcm.h>
15#include <sound/pcm_params.h>
16
17#include "audio.h"
Markus Grabner1027f472010-08-12 01:35:30 +020018#include "capture.h"
19#include "driver.h"
Markus Grabner705ecec2009-02-27 19:43:04 -080020#include "pcm.h"
21#include "pod.h"
Markus Grabner1027f472010-08-12 01:35:30 +020022
Markus Grabner705ecec2009-02-27 19:43:04 -080023/*
24 Find a free URB and submit it.
25*/
Markus Grabner1027f472010-08-12 01:35:30 +020026static int submit_audio_in_urb(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -080027{
Markus Grabner1027f472010-08-12 01:35:30 +020028 int index;
Markus Grabner705ecec2009-02-27 19:43:04 -080029 unsigned long flags;
Markus Grabner705ecec2009-02-27 19:43:04 -080030 int i, urb_size;
Markus Grabnere1a164d2010-08-23 01:08:25 +020031 int ret;
Markus Grabner705ecec2009-02-27 19:43:04 -080032 struct urb *urb_in;
33
34 spin_lock_irqsave(&line6pcm->lock_audio_in, flags);
Shawn Bohrere0645d62009-11-15 22:17:52 -060035 index =
36 find_first_zero_bit(&line6pcm->active_urb_in, LINE6_ISO_BUFFERS);
Markus Grabner705ecec2009-02-27 19:43:04 -080037
Markus Grabner1027f472010-08-12 01:35:30 +020038 if (index < 0 || index >= LINE6_ISO_BUFFERS) {
Markus Grabner705ecec2009-02-27 19:43:04 -080039 spin_unlock_irqrestore(&line6pcm->lock_audio_in, flags);
Markus Grabner1027f472010-08-12 01:35:30 +020040 dev_err(line6pcm->line6->ifcdev, "no free URB found\n");
Markus Grabner705ecec2009-02-27 19:43:04 -080041 return -EINVAL;
42 }
43
44 urb_in = line6pcm->urb_audio_in[index];
45 urb_size = 0;
46
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080047 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrere0645d62009-11-15 22:17:52 -060048 struct usb_iso_packet_descriptor *fin =
49 &urb_in->iso_frame_desc[i];
Markus Grabner705ecec2009-02-27 19:43:04 -080050 fin->offset = urb_size;
51 fin->length = line6pcm->max_packet_size;
52 urb_size += line6pcm->max_packet_size;
53 }
54
Shawn Bohrere0645d62009-11-15 22:17:52 -060055 urb_in->transfer_buffer =
56 line6pcm->buffer_in +
57 index * LINE6_ISO_PACKETS * line6pcm->max_packet_size;
Markus Grabner705ecec2009-02-27 19:43:04 -080058 urb_in->transfer_buffer_length = urb_size;
Markus Grabner1027f472010-08-12 01:35:30 +020059 urb_in->context = line6pcm;
Markus Grabner705ecec2009-02-27 19:43:04 -080060
Markus Grabnere1a164d2010-08-23 01:08:25 +020061 ret = usb_submit_urb(urb_in, GFP_ATOMIC);
62
63 if (ret == 0)
Markus Grabner705ecec2009-02-27 19:43:04 -080064 set_bit(index, &line6pcm->active_urb_in);
65 else
Markus Grabner1027f472010-08-12 01:35:30 +020066 dev_err(line6pcm->line6->ifcdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +020067 "URB in #%d submission failed (%d)\n", index, ret);
Markus Grabner705ecec2009-02-27 19:43:04 -080068
69 spin_unlock_irqrestore(&line6pcm->lock_audio_in, flags);
70 return 0;
71}
72
73/*
74 Submit all currently available capture URBs.
75*/
Markus Grabner1027f472010-08-12 01:35:30 +020076int line6_submit_audio_in_all_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -080077{
78 int ret, i;
79
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080080 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner1027f472010-08-12 01:35:30 +020081 ret = submit_audio_in_urb(line6pcm);
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080082 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -080083 return ret;
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080084 }
Markus Grabner705ecec2009-02-27 19:43:04 -080085
86 return 0;
87}
88
89/*
90 Unlink all currently active capture URBs.
91*/
Markus Grabner1027f472010-08-12 01:35:30 +020092void line6_unlink_audio_in_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -080093{
94 unsigned int i;
95
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -080096 for (i = LINE6_ISO_BUFFERS; i--;) {
97 if (test_bit(i, &line6pcm->active_urb_in)) {
98 if (!test_and_set_bit(i, &line6pcm->unlink_urb_in)) {
Markus Grabner705ecec2009-02-27 19:43:04 -080099 struct urb *u = line6pcm->urb_audio_in[i];
Markus Grabner705ecec2009-02-27 19:43:04 -0800100 usb_unlink_urb(u);
101 }
102 }
103 }
104}
105
106/*
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800107 Wait until unlinking of all currently active capture URBs has been
108 finished.
Markus Grabner705ecec2009-02-27 19:43:04 -0800109*/
110static void wait_clear_audio_in_urbs(struct snd_line6_pcm *line6pcm)
111{
112 int timeout = HZ;
113 unsigned int i;
114 int alive;
115
116 do {
117 alive = 0;
118 for (i = LINE6_ISO_BUFFERS; i--;) {
119 if (test_bit(i, &line6pcm->active_urb_in))
120 alive++;
121 }
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800122 if (!alive)
Markus Grabner705ecec2009-02-27 19:43:04 -0800123 break;
124 set_current_state(TASK_UNINTERRUPTIBLE);
125 schedule_timeout(1);
126 } while (--timeout > 0);
127 if (alive)
128 snd_printk(KERN_ERR "timeout: still %d active urbs..\n", alive);
Markus Grabner705ecec2009-02-27 19:43:04 -0800129}
130
131/*
132 Unlink all currently active capture URBs, and wait for finishing.
133*/
Markus Grabner1027f472010-08-12 01:35:30 +0200134void line6_unlink_wait_clear_audio_in_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800135{
Markus Grabner1027f472010-08-12 01:35:30 +0200136 line6_unlink_audio_in_urbs(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800137 wait_clear_audio_in_urbs(line6pcm);
138}
139
140/*
Markus Grabner1027f472010-08-12 01:35:30 +0200141 Copy data into ALSA capture buffer.
142*/
143void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf, int fsize)
144{
145 struct snd_pcm_substream *substream =
146 get_substream(line6pcm, SNDRV_PCM_STREAM_CAPTURE);
147 struct snd_pcm_runtime *runtime = substream->runtime;
148 const int bytes_per_frame = line6pcm->properties->bytes_per_frame;
149 int frames = fsize / bytes_per_frame;
150
Peter Huewe597a1e72010-12-07 23:38:02 +0100151 if (runtime == NULL)
Markus Grabnerc7fcf252010-09-17 23:33:25 +0200152 return;
153
Markus Grabner1027f472010-08-12 01:35:30 +0200154 if (line6pcm->pos_in_done + frames > runtime->buffer_size) {
155 /*
Markus Grabnere1a164d2010-08-23 01:08:25 +0200156 The transferred area goes over buffer boundary,
157 copy two separate chunks.
158 */
Markus Grabner1027f472010-08-12 01:35:30 +0200159 int len;
160 len = runtime->buffer_size - line6pcm->pos_in_done;
161
162 if (len > 0) {
163 memcpy(runtime->dma_area +
164 line6pcm->pos_in_done * bytes_per_frame, fbuf,
165 len * bytes_per_frame);
166 memcpy(runtime->dma_area, fbuf + len * bytes_per_frame,
167 (frames - len) * bytes_per_frame);
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700168 } else {
169 /* this is somewhat paranoid */
170 dev_err(line6pcm->line6->ifcdev,
171 "driver bug: len = %d\n", len);
172 }
Markus Grabner1027f472010-08-12 01:35:30 +0200173 } else {
174 /* copy single chunk */
175 memcpy(runtime->dma_area +
176 line6pcm->pos_in_done * bytes_per_frame, fbuf, fsize);
177 }
178
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700179 line6pcm->pos_in_done += frames;
180 if (line6pcm->pos_in_done >= runtime->buffer_size)
Markus Grabner1027f472010-08-12 01:35:30 +0200181 line6pcm->pos_in_done -= runtime->buffer_size;
182}
183
184void line6_capture_check_period(struct snd_line6_pcm *line6pcm, int length)
185{
186 struct snd_pcm_substream *substream =
187 get_substream(line6pcm, SNDRV_PCM_STREAM_CAPTURE);
188
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700189 line6pcm->bytes_in += length;
190 if (line6pcm->bytes_in >= line6pcm->period_in) {
Markus Grabner1027f472010-08-12 01:35:30 +0200191 line6pcm->bytes_in %= line6pcm->period_in;
192 snd_pcm_period_elapsed(substream);
193 }
194}
195
196/*
Greg Kroah-Hartman027360c2010-09-21 16:58:00 -0700197 * Callback for completed capture URB.
198 */
Greg Kroah-Hartman0c7ab152009-02-27 20:28:04 -0800199static void audio_in_callback(struct urb *urb)
Markus Grabner705ecec2009-02-27 19:43:04 -0800200{
201 int i, index, length = 0, shutdown = 0;
Markus Grabner705ecec2009-02-27 19:43:04 -0800202 unsigned long flags;
203
Markus Grabner1027f472010-08-12 01:35:30 +0200204 struct snd_line6_pcm *line6pcm = (struct snd_line6_pcm *)urb->context;
205
206 line6pcm->last_frame_in = urb->start_frame;
Markus Grabner705ecec2009-02-27 19:43:04 -0800207
208 /* find index of URB */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800209 for (index = 0; index < LINE6_ISO_BUFFERS; ++index)
210 if (urb == line6pcm->urb_audio_in[index])
Markus Grabner705ecec2009-02-27 19:43:04 -0800211 break;
212
Markus Grabner1027f472010-08-12 01:35:30 +0200213#ifdef CONFIG_LINE6_USB_DUMP_PCM
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800214 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Shawn Bohrere0645d62009-11-15 22:17:52 -0600215 struct usb_iso_packet_descriptor *fout =
216 &urb->iso_frame_desc[i];
217 line6_write_hexdump(line6pcm->line6, 'C',
218 urb->transfer_buffer + fout->offset,
219 fout->length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800220 }
221#endif
222
223 spin_lock_irqsave(&line6pcm->lock_audio_in, flags);
224
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800225 for (i = 0; i < LINE6_ISO_PACKETS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800226 char *fbuf;
227 int fsize;
228 struct usb_iso_packet_descriptor *fin = &urb->iso_frame_desc[i];
229
Markus Grabnere1a164d2010-08-23 01:08:25 +0200230 if (fin->status == -EXDEV) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800231 shutdown = 1;
232 break;
233 }
234
235 fbuf = urb->transfer_buffer + fin->offset;
236 fsize = fin->actual_length;
Markus Grabner1027f472010-08-12 01:35:30 +0200237
238 if (fsize > line6pcm->max_packet_size) {
239 dev_err(line6pcm->line6->ifcdev,
240 "driver and/or device bug: packet too large (%d > %d)\n",
241 fsize, line6pcm->max_packet_size);
242 }
243
Markus Grabner705ecec2009-02-27 19:43:04 -0800244 length += fsize;
245
Markus Grabner1027f472010-08-12 01:35:30 +0200246 /* the following assumes LINE6_ISO_PACKETS == 1: */
Markus Grabner1027f472010-08-12 01:35:30 +0200247 line6pcm->prev_fbuf = fbuf;
Markus Grabner1027f472010-08-12 01:35:30 +0200248 line6pcm->prev_fsize = fsize;
Markus Grabner705ecec2009-02-27 19:43:04 -0800249
Markus Grabner1027f472010-08-12 01:35:30 +0200250#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
251 if (!(line6pcm->flags & MASK_PCM_IMPULSE))
252#endif
253 if (test_bit(BIT_PCM_ALSA_CAPTURE, &line6pcm->flags)
254 && (fsize > 0))
255 line6_capture_copy(line6pcm, fbuf, fsize);
Markus Grabner705ecec2009-02-27 19:43:04 -0800256 }
257
258 clear_bit(index, &line6pcm->active_urb_in);
259
Markus Grabner1027f472010-08-12 01:35:30 +0200260 if (test_and_clear_bit(index, &line6pcm->unlink_urb_in))
Markus Grabner705ecec2009-02-27 19:43:04 -0800261 shutdown = 1;
262
263 spin_unlock_irqrestore(&line6pcm->lock_audio_in, flags);
264
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800265 if (!shutdown) {
Markus Grabner1027f472010-08-12 01:35:30 +0200266 submit_audio_in_urb(line6pcm);
Markus Grabner705ecec2009-02-27 19:43:04 -0800267
Markus Grabnere1a164d2010-08-23 01:08:25 +0200268#ifdef CONFIG_LINE6_USB_IMPULSE_RESPONSE
269 if (!(line6pcm->flags & MASK_PCM_IMPULSE))
270#endif
271 if (test_bit(BIT_PCM_ALSA_CAPTURE, &line6pcm->flags))
272 line6_capture_check_period(line6pcm, length);
Markus Grabner705ecec2009-02-27 19:43:04 -0800273 }
274}
275
276/* open capture callback */
277static int snd_line6_capture_open(struct snd_pcm_substream *substream)
278{
279 int err;
280 struct snd_pcm_runtime *runtime = substream->runtime;
281 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
282
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800283 err = snd_pcm_hw_constraint_ratdens(runtime, 0,
284 SNDRV_PCM_HW_PARAM_RATE,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200285 (&line6pcm->
286 properties->snd_line6_rates));
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800287 if (err < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800288 return err;
289
290 runtime->hw = line6pcm->properties->snd_line6_capture_hw;
291 return 0;
292}
293
294/* close capture callback */
295static int snd_line6_capture_close(struct snd_pcm_substream *substream)
296{
297 return 0;
298}
299
300/* hw_params capture callback */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800301static int snd_line6_capture_hw_params(struct snd_pcm_substream *substream,
302 struct snd_pcm_hw_params *hw_params)
Markus Grabner705ecec2009-02-27 19:43:04 -0800303{
304 int ret;
305 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
306
307 /* -- Florian Demski [FD] */
308 /* don't ask me why, but this fixes the bug on my machine */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800309 if (line6pcm == NULL) {
310 if (substream->pcm == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800311 return -ENOMEM;
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800312 if (substream->pcm->private_data == NULL)
Markus Grabner705ecec2009-02-27 19:43:04 -0800313 return -ENOMEM;
314 substream->private_data = substream->pcm->private_data;
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800315 line6pcm = snd_pcm_substream_chip(substream);
Markus Grabner705ecec2009-02-27 19:43:04 -0800316 }
317 /* -- [FD] end */
318
Stefan Hajnoczi60c01a92011-12-10 02:12:27 +0100319 /* We may be invoked multiple times in a row so allocate once only */
320 if (!line6pcm->buffer_in)
321 line6pcm->buffer_in =
322 kmalloc(LINE6_ISO_BUFFERS * LINE6_ISO_PACKETS *
323 line6pcm->max_packet_size, GFP_KERNEL);
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000324
325 if (!line6pcm->buffer_in) {
326 dev_err(line6pcm->line6->ifcdev,
327 "cannot malloc capture buffer\n");
328 return -ENOMEM;
329 }
330
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800331 ret = snd_pcm_lib_malloc_pages(substream,
332 params_buffer_bytes(hw_params));
333 if (ret < 0)
Markus Grabner705ecec2009-02-27 19:43:04 -0800334 return ret;
335
336 line6pcm->period_in = params_period_bytes(hw_params);
Markus Grabner705ecec2009-02-27 19:43:04 -0800337 return 0;
338}
339
340/* hw_free capture callback */
341static int snd_line6_capture_hw_free(struct snd_pcm_substream *substream)
342{
Stefan Hajnoczi140e28b2011-11-23 08:20:45 +0000343 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
344
345 line6_unlink_wait_clear_audio_in_urbs(line6pcm);
346 kfree(line6pcm->buffer_in);
347 line6pcm->buffer_in = NULL;
Markus Grabner705ecec2009-02-27 19:43:04 -0800348 return snd_pcm_lib_free_pages(substream);
349}
350
351/* trigger callback */
Markus Grabner1027f472010-08-12 01:35:30 +0200352int snd_line6_capture_trigger(struct snd_line6_pcm *line6pcm, int cmd)
Markus Grabner705ecec2009-02-27 19:43:04 -0800353{
Markus Grabner705ecec2009-02-27 19:43:04 -0800354 int err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800355
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800356 switch (cmd) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800357 case SNDRV_PCM_TRIGGER_START:
Markus Grabner1027f472010-08-12 01:35:30 +0200358#ifdef CONFIG_PM
359 case SNDRV_PCM_TRIGGER_RESUME:
360#endif
361 err = line6_pcm_start(line6pcm, MASK_PCM_ALSA_CAPTURE);
Markus Grabner705ecec2009-02-27 19:43:04 -0800362
Markus Grabner1027f472010-08-12 01:35:30 +0200363 if (err < 0)
364 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800365
366 break;
367
368 case SNDRV_PCM_TRIGGER_STOP:
Markus Grabner1027f472010-08-12 01:35:30 +0200369#ifdef CONFIG_PM
370 case SNDRV_PCM_TRIGGER_SUSPEND:
371#endif
372 err = line6_pcm_stop(line6pcm, MASK_PCM_ALSA_CAPTURE);
373
374 if (err < 0)
375 return err;
Markus Grabner705ecec2009-02-27 19:43:04 -0800376
377 break;
378
379 default:
380 return -EINVAL;
381 }
382
383 return 0;
384}
385
386/* capture pointer callback */
387static snd_pcm_uframes_t
388snd_line6_capture_pointer(struct snd_pcm_substream *substream)
389{
390 struct snd_line6_pcm *line6pcm = snd_pcm_substream_chip(substream);
391 return line6pcm->pos_in_done;
392}
393
394/* capture operators */
395struct snd_pcm_ops snd_line6_capture_ops = {
Markus Grabnere1a164d2010-08-23 01:08:25 +0200396 .open = snd_line6_capture_open,
397 .close = snd_line6_capture_close,
398 .ioctl = snd_pcm_lib_ioctl,
399 .hw_params = snd_line6_capture_hw_params,
400 .hw_free = snd_line6_capture_hw_free,
401 .prepare = snd_line6_prepare,
402 .trigger = snd_line6_trigger,
403 .pointer = snd_line6_capture_pointer,
Markus Grabner705ecec2009-02-27 19:43:04 -0800404};
405
Markus Grabner1027f472010-08-12 01:35:30 +0200406int line6_create_audio_in_urbs(struct snd_line6_pcm *line6pcm)
Markus Grabner705ecec2009-02-27 19:43:04 -0800407{
408 int i;
409
410 /* create audio URBs and fill in constant values: */
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800411 for (i = 0; i < LINE6_ISO_BUFFERS; ++i) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800412 struct urb *urb;
413
414 /* URB for audio in: */
Shawn Bohrere0645d62009-11-15 22:17:52 -0600415 urb = line6pcm->urb_audio_in[i] =
416 usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
Markus Grabner705ecec2009-02-27 19:43:04 -0800417
Greg Kroah-Hartman6efc5662009-02-27 22:39:22 -0800418 if (urb == NULL) {
Markus Grabner705ecec2009-02-27 19:43:04 -0800419 dev_err(line6pcm->line6->ifcdev, "Out of memory\n");
420 return -ENOMEM;
421 }
422
423 urb->dev = line6pcm->line6->usbdev;
Shawn Bohrere0645d62009-11-15 22:17:52 -0600424 urb->pipe =
425 usb_rcvisocpipe(line6pcm->line6->usbdev,
Markus Grabnere1a164d2010-08-23 01:08:25 +0200426 line6pcm->ep_audio_read &
427 USB_ENDPOINT_NUMBER_MASK);
Markus Grabner705ecec2009-02-27 19:43:04 -0800428 urb->transfer_flags = URB_ISO_ASAP;
429 urb->start_frame = -1;
430 urb->number_of_packets = LINE6_ISO_PACKETS;
431 urb->interval = LINE6_ISO_INTERVAL;
432 urb->error_count = 0;
433 urb->complete = audio_in_callback;
434 }
435
436 return 0;
437}