[devhost] Remove redundant conditional statements

Change-Id: I839140d6d320fab9784f32de8d054b1284dfb319
diff --git a/src/devices/driver_host/core.cc b/src/devices/driver_host/core.cc
index ca9ad10..7ab0fdc5 100644
--- a/src/devices/driver_host/core.cc
+++ b/src/devices/driver_host/core.cc
@@ -763,7 +763,7 @@
   enum_lock_release();
 
   // default_resume() returns ZX_ERR_NOT_SUPPORTED
-  if ((status != ZX_OK) && (status != ZX_ERR_NOT_SUPPORTED)) {
+  if (status != ZX_ERR_NOT_SUPPORTED) {
     return status;
   }
   return ZX_OK;