uhd: remove extra type conversion

Type conversion, if necessary, should happen inside the device.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2633 19bc5d8c-e614-43d4-8b26-e1612bc8e597
diff --git a/Transceiver52M/USRPping.cpp b/Transceiver52M/USRPping.cpp
index b238c69..b80e8cb 100644
--- a/Transceiver52M/USRPping.cpp
+++ b/Transceiver52M/USRPping.cpp
@@ -82,7 +82,6 @@
       LOG(INFO) << "rcvd. data@:" << timestamp;
       for (int i = 0; i < 512; i++) {
         uint32_t *wordPtr = (uint32_t *) &readBuf[2*i];
-        *wordPtr = usrp_to_host_u32(*wordPtr); 
 	printf ("%llu: %d %d\n", timestamp+i,readBuf[2*i],readBuf[2*i+1]);
         sum += (readBuf[2*i+1]*readBuf[2*i+1] + readBuf[2*i]*readBuf[2*i]);
         num++;