From ddd66f1bd3d13cbdc88410925b153becefa00d8b Mon Sep 17 00:00:00 2001 From: Dongwoo Lee Date: Thu, 11 Apr 2019 16:52:36 +0900 Subject: [PATCH] pass: core: Remove unused structure Since commit 261812a0492a, struct device_ops default_ops is not used anymore. This patch removes it to prevent build warning. Change-Id: I933adf899125ff0f6b078cffb06f7fd6d0ec99ca Fixes: 261812a0492a ("core: Remove unneeded codesa") Signed-off-by: Dongwoo Lee --- src/core/devices.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/devices.c b/src/core/devices.c index 0e7b969..296c047 100644 --- a/src/core/devices.c +++ b/src/core/devices.c @@ -23,10 +23,6 @@ #include #include -static const struct device_ops default_ops = { - .name = "default-ops", -}; - static GList *dev_head; void add_device(const struct device_ops *dev) -- 2.7.4