struct urb *urb)
 {
        unsigned char *cp = urb->transfer_buffer;
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        urb->dev = ctx->subs->dev; /* we need to set this at each time */
        urb->iso_frame_desc[0].length = 3;
                                       struct urb *urb)
 {
        unsigned char *cp = urb->transfer_buffer;
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        urb->dev = ctx->subs->dev; /* we need to set this at each time */
        urb->iso_frame_desc[0].length = 4;
                               struct urb *urb)
 {
        int i, offs;
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        offs = 0;
        urb->dev = ctx->subs->dev; /* we need to set this at each time */
                                     struct snd_pcm_runtime *runtime,
                                     struct urb *urb)
 {
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        urb->dev = ctx->subs->dev; /* we need to set this at each time */
        urb->iso_frame_desc[0].length = 3;
                                        struct snd_pcm_runtime *runtime,
                                        struct urb *urb)
 {
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        urb->dev = ctx->subs->dev; /* we need to set this at each time */
        urb->iso_frame_desc[0].length = 4;
        unsigned int counts;
        unsigned long flags;
        int period_elapsed = 0;
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
 
        stride = runtime->frame_bits >> 3;
 
  */
 static void snd_complete_urb(struct urb *urb)
 {
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
        struct snd_usb_substream *subs = ctx->subs;
        struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
        int err = 0;
  */
 static void snd_complete_sync_urb(struct urb *urb)
 {
-       struct snd_urb_ctx *ctx = (struct snd_urb_ctx *)urb->context;
+       struct snd_urb_ctx *ctx = urb->context;
        struct snd_usb_substream *subs = ctx->subs;
        struct snd_pcm_substream *substream = ctx->subs->pcm_substream;
        int err = 0;
 static int snd_usb_hw_params(struct snd_pcm_substream *substream,
                             struct snd_pcm_hw_params *hw_params)
 {
-       struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
+       struct snd_usb_substream *subs = substream->runtime->private_data;
        struct audioformat *fmt;
        unsigned int channels, rate, format;
        int ret, changed;
  */
 static int snd_usb_hw_free(struct snd_pcm_substream *substream)
 {
-       struct snd_usb_substream *subs = (struct snd_usb_substream *)substream->runtime->private_data;
+       struct snd_usb_substream *subs = substream->runtime->private_data;
 
        subs->cur_audiofmt = NULL;
        subs->cur_rate = 0;