[OpenMP52][LIBOMPTARGET] Do not throw error in omp_get_mapped_ptr for the host (#80038)

OpenMP spec 5.2 specifies return value to be the host ptr
in case of device_num being same as omp_get_initial_device().

GitOrigin-RevId: 5f6640e268b5e6ead22983ba9e2074e3bbf0612b
diff --git a/libomptarget/src/OpenMP/API.cpp b/libomptarget/src/OpenMP/API.cpp
index a7b6eac..1ab1877 100644
--- a/libomptarget/src/OpenMP/API.cpp
+++ b/libomptarget/src/OpenMP/API.cpp
@@ -598,7 +598,7 @@
 
   size_t NumDevices = omp_get_initial_device();
   if (DeviceNum == NumDevices) {
-    REPORT("Device %d is initial device, returning Ptr " DPxMOD ".\n",
+    DP("Device %d is initial device, returning Ptr " DPxMOD ".\n",
            DeviceNum, DPxPTR(Ptr));
     return const_cast<void *>(Ptr);
   }