summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKunhoon Baik <knhoon.baik@samsung.com>2016-07-02 14:25:57 +0900
committerpr.jung <pr.jung@samsung.com>2016-07-21 11:37:18 +0900
commitc22ebf8019941003ed97c9c965d48afb855f3cba (patch)
treed544b3467cb39f6fc1acff63e01e8263ffc2e1a3 /src
parent58c76943d115f15d5fb88c750681b90f16264a55 (diff)
downloadlibsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.tar.gz
libsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.tar.bz2
libsvi-c22ebf8019941003ed97c9c965d48afb855f3cba.zip
TODO : iUTC should be created Change-Id: I6b09d8763f44535580b794393527ca489bfb0792
Diffstat (limited to 'src')
-rw-r--r--src/profiles.c36
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);
-}