Commit e214e518 authored by Dan Carpenter's avatar Dan Carpenter Committed by Takashi Iwai
Browse files

sound/sb_ess: white space cleanups



These weren't aligned on the same lines as the surrounding code and the
printk was quite messy.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent df403869
Loading
Loading
Loading
Loading
+7 −12
Original line number Diff line number Diff line
@@ -1183,17 +1183,12 @@ FKS_test (devc);
			chip = "ES1688";
		}

	    printk ( KERN_INFO "ESS chip %s %s%s\n"
               , chip
               , ( devc->sbmo.esstype == ESSTYPE_DETECT || devc->sbmo.esstype == ESSTYPE_LIKE20
                 ? "detected"
                 : "specified"
                 )
               , ( devc->sbmo.esstype == ESSTYPE_LIKE20
                 ? " (kernel 2.0 compatible)"
                 : ""
                 )
               );
		printk(KERN_INFO "ESS chip %s %s%s\n", chip,
		       (devc->sbmo.esstype == ESSTYPE_DETECT ||
			devc->sbmo.esstype == ESSTYPE_LIKE20) ?
				"detected" : "specified",
			devc->sbmo.esstype == ESSTYPE_LIKE20 ?
				" (kernel 2.0 compatible)" : "");

		sprintf(name,"ESS %s AudioDrive (rev %d)", chip, ess_minor & 0x0f);
	} else {