mmc: mmc_test: Remove set-but-unused variable.

Fixes:

drivers/mmc/card/mmc_test.c: In function ‘mmc_test_seq_perf’:
drivers/mmc/card/mmc_test.c:1878:28: warning: variable ‘ts’ set but not
used [-Wunused-but-set-variable]

There's no reason to be calling timespec_sub() here, because
mmc_test_print_avg_rate() is going to do that itself.

Signed-off-by: Chris Ball <cjb@laptop.org>
Cc: Adrian Hunter <adrian.hunter@nokia.com>

+1 -2
+1 -2
drivers/mmc/card/mmc_test.c
··· 1875 unsigned int tot_sz, int max_scatter) 1876 { 1877 unsigned int dev_addr, i, cnt, sz, ssz; 1878 - struct timespec ts1, ts2, ts; 1879 int ret; 1880 1881 sz = test->area.max_tfr; ··· 1912 } 1913 getnstimeofday(&ts2); 1914 1915 - ts = timespec_sub(ts2, ts1); 1916 mmc_test_print_avg_rate(test, sz, cnt, &ts1, &ts2); 1917 1918 return 0;
··· 1875 unsigned int tot_sz, int max_scatter) 1876 { 1877 unsigned int dev_addr, i, cnt, sz, ssz; 1878 + struct timespec ts1, ts2; 1879 int ret; 1880 1881 sz = test->area.max_tfr; ··· 1912 } 1913 getnstimeofday(&ts2); 1914 1915 mmc_test_print_avg_rate(test, sz, cnt, &ts1, &ts2); 1916 1917 return 0;