diff options
author | Kunhoon Baik <knhoon.baik@samsung.com> | 2016-07-02 14:25:57 +0900 |
---|---|---|
committer | pr.jung <pr.jung@samsung.com> | 2016-07-21 11:37:18 +0900 |
commit | c22ebf8019941003ed97c9c965d48afb855f3cba (patch) | |
tree | d544b3467cb39f6fc1acff63e01e8263ffc2e1a3 /src | |
parent | 58c76943d115f15d5fb88c750681b90f16264a55 (diff) | |
download | libsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.tar.gz libsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.tar.bz2 libsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.zip |
Remove Unused TC Codesubmit/tizen/20160721.044359accepted/tizen/wearable/20160721.092022accepted/tizen/tv/20160721.091715accepted/tizen/mobile/20160721.092441accepted/tizen/ivi/20160721.093017accepted/tizen/common/20160721.180513
TODO : iUTC should be created
Change-Id: I6b09d8763f44535580b794393527ca489bfb0792
Diffstat (limited to 'src')
-rw-r--r-- | src/profiles.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/profiles.c b/src/profiles.c deleted file mode 100644 index 1f7f2f9..0000000 --- a/src/profiles.c +++ /dev/null @@ -1,36 +0,0 @@ -/* - * deviced - * - * Copyright (c) 2015 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the License); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -#include <stdio.h> -#include <limits.h> - -#include "profiles.h" -#include "log.h" - -static dd_list *profile_head; - -void add_profile(const struct profile_ops *ops) -{ - DD_LIST_APPEND(profile_head, (struct profile_ops*)ops); -} - -void remove_profile(const struct profile_ops *ops) -{ - DD_LIST_REMOVE(profile_head, (struct profile_ops*)ops); -} |