Skip to content

Commit

Permalink
Staging: line6: fix checkpatch errors in audio.c
Browse files Browse the repository at this point in the history
Lots of warnings also fixed up.

Cc: Markus Grabner <grabner@icg.tugraz.at>
Cc: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Apr 3, 2009
1 parent 0fdef36 commit dfc7056
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/staging/line6/audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ static char *line6_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
*/
int line6_init_audio(struct usb_line6 *line6)
{
static int dev = 0;
static int dev;
struct snd_card *card;

card = snd_card_new(line6_index[dev], line6_id[dev], THIS_MODULE, 0);

if(card == NULL)
if (card == NULL)
return -ENOMEM;

line6->card = card;
Expand All @@ -49,7 +49,8 @@ int line6_register_audio(struct usb_line6 *line6)
{
int err;

if((err = snd_card_register(line6->card)) < 0)
err = snd_card_register(line6->card);
if (err < 0)
return err;

return 0;
Expand Down

0 comments on commit dfc7056

Please sign in to comment.