Remove unused dataService

Change-Id: I99e0d16a56908beb1397bb4c15390c72c3b2f3f5
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/app/configuration/controllers/firmware-controller.js b/app/configuration/controllers/firmware-controller.js
index 04a7c78..50deff3 100644
--- a/app/configuration/controllers/firmware-controller.js
+++ b/app/configuration/controllers/firmware-controller.js
@@ -10,13 +10,11 @@
   'use strict';
 
   angular.module('app.configuration').controller('firmwareController', [
-    '$scope', '$window', 'APIUtils', 'dataService', '$location',
-    '$anchorScroll', 'Constants', '$interval', '$q', '$timeout', '$interpolate',
+    '$scope', '$window', 'APIUtils', '$location', '$anchorScroll', 'Constants',
+    '$interval', '$q', '$timeout', '$interpolate',
     function(
-        $scope, $window, APIUtils, dataService, $location, $anchorScroll,
-        Constants, $interval, $q, $timeout, $interpolate) {
-      $scope.dataService = dataService;
-
+        $scope, $window, APIUtils, $location, $anchorScroll, Constants,
+        $interval, $q, $timeout, $interpolate) {
       // Scroll to target anchor
       $scope.gotoAnchor = function() {
         $location.hash('upload');