camera: remove is-vendor-board-platform,QCOM check for kernel deps

* Our common method for this in vendor/cm/build/core/qcom_utils.mk
  only works if BOARD_USES_QCOM_HARDWARE is set, which, on a nexus
  or pixel, is not. We already handle the check for this flag via
  pathmap, so relaxing this check should be fine.

Change-Id: Iad12afb6f810090d90416899b281d9f016111373
diff --git a/common.mk b/common.mk
index a872679..15120d3 100644
--- a/common.mk
+++ b/common.mk
@@ -1,9 +1,7 @@
 common_deps :=
 kernel_includes :=
 
-ifeq ($(call is-vendor-board-platform,QCOM),true)
 ifeq ($(TARGET_COMPILE_WITH_MSM_KERNEL),true)
     common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
     kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
 endif
-endif