Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion rpc/srv/dsFPD.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:

Check failure on line 3 in rpc/srv/dsFPD.c

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'rpc/srv/dsFPD.c' (Match: rdk/components/generic/devicesettings/rdk/components/generic/devicesettings/2010, 813 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdk/components/generic/devicesettings/+archive/RDK-DEV-2010.tar.gz, file: rpc/srv/dsFPD.c)

Check failure on line 3 in rpc/srv/dsFPD.c

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'rpc/srv/dsFPD.c' (Match: rdk/components/generic/devicesettings/rdk/components/generic/devicesettings/2012, 813 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdk/components/generic/devicesettings/+archive/rdk-dev-2012.tar.gz, file: rpc/srv/dsFPD.c)
*
* Copyright 2016 RDK Management
*
Expand Down Expand Up @@ -172,7 +172,13 @@

IARM_Result_t dsFPDMgr_init()
{

IARM_BUS_Lock(lock);
if (!m_isPlatInitialized) {
dsFPInit();
m_isPlatInitialized = 1;
INT_INFO("FP HAL Initialized successfully ...\n");
}
IARM_BUS_Unlock(lock);

IARM_Bus_RegisterCall(IARM_BUS_DSMGR_API_dsFPInit,_dsFPInit);

Expand Down
Loading