Reversing the Added API to read the device SOC ID
Change-Id: I96bd498fdd9509a1d52063ec26732a99365415d5 CRs-Fixed: 2531660
This commit is contained in:
parent
4d2c7279b5
commit
d66fc2cdb4
2 changed files with 0 additions and 22 deletions
|
@ -208,24 +208,3 @@ detected:
|
|||
LOC_LOGW("HAL: %s returned %d", __FUNCTION__, gTarget);
|
||||
return gTarget;
|
||||
}
|
||||
|
||||
int loc_read_device_soc_id()
|
||||
{
|
||||
char buf[10] = {0};
|
||||
int soc_id = 0;
|
||||
int fd = open("/sys/devices/soc0/soc_id", O_RDONLY);
|
||||
if (fd >= 0)
|
||||
{
|
||||
if (read(fd, buf, sizeof(buf) - 1) == -1)
|
||||
{
|
||||
LOC_LOGI ("%s: unable to read soc_id", __FUNCTION__);
|
||||
}
|
||||
else
|
||||
{
|
||||
soc_id = atoi(buf);
|
||||
LOC_LOGI ("%s: Soc ID :%d", __FUNCTION__, soc_id);
|
||||
}
|
||||
close(fd);
|
||||
}
|
||||
return soc_id;
|
||||
}
|
||||
|
|
|
@ -54,7 +54,6 @@ void loc_get_platform_name(char *platform_name, int array_length);
|
|||
/*The character array passed to this function should have length
|
||||
of atleast PROPERTY_VALUE_MAX*/
|
||||
void loc_get_auto_platform_name(char *platform_name, int array_length);
|
||||
int loc_read_device_soc_id();
|
||||
|
||||
/* Please remember to update 'target_name' in loc_log.cpp,
|
||||
if do any changes to this enum. */
|
||||
|
|
Loading…
Reference in a new issue