[hipl-commit] [tiny] Rev 3559: Removed useless 'goto' statement and fixed line width.

  • From: Tim Just <tim.just@xxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 23 Feb 2010 18:30:29 +0200

Committer: Tim Just <tim.just@xxxxxxxxxxxxxx>
Date: Tue Feb 23 17:29:33 2010 +0100
Revision: 3559
Revision-id: tim.just@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: tiny

Log:
  Removed useless 'goto' statement and fixed line width.

Modified:
  M  hipd/input.c

=== modified file 'hipd/input.c'
--- hipd/input.c        2010-02-23 16:19:35 +0000
+++ hipd/input.c        2010-02-23 16:29:33 +0000
@@ -702,7 +702,9 @@
     }
 
 #ifdef CONFIG_HIP_PERFORMANCE
-    HIP_DEBUG("Write PERF_SIGN, PERF_DSA_SIGN_IMPL, PERF_RSA_SIGN_IMPL, 
PERF_VERIFY, PERF_DSA_VERIFY_IMPL, PERF_RSA_VERIFY_IMPL, PERF_DH_CREATE\n");
+    HIP_DEBUG("Write PERF_SIGN, PERF_DSA_SIGN_IMPL, PERF_RSA_SIGN_IMPL," \
+              " PERF_VERIFY, PERF_DSA_VERIFY_IMPL, PERF_RSA_VERIFY_IMPL," \
+              " PERF_DH_CREATE\n");
     hip_perf_write_benchmark(perf_set, PERF_SIGN);
     hip_perf_write_benchmark(perf_set, PERF_DSA_SIGN_IMPL);
     hip_perf_write_benchmark(perf_set, PERF_RSA_SIGN_IMPL);
@@ -713,10 +715,6 @@
 #endif
     HIP_DEBUG("Done with control packet, err is %d.\n", err);
 
-    if (err) {
-        goto out_err;
-    }
-
 out_err:
     return err;
 }

Other related posts:

  • » [hipl-commit] [tiny] Rev 3559: Removed useless 'goto' statement and fixed line width. - Tim Just