From patchwork Tue Oct 22 08:46:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dafna Hirschfeld X-Patchwork-Id: 11204023 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 52000112C for ; Tue, 22 Oct 2019 08:46:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3923F2184C for ; Tue, 22 Oct 2019 08:46:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388480AbfJVIq2 (ORCPT ); Tue, 22 Oct 2019 04:46:28 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:45826 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388474AbfJVIq2 (ORCPT ); Tue, 22 Oct 2019 04:46:28 -0400 Received: from localhost.localdomain (2a02-8429-8174-0401-9a7f-8789-6b2c-098e.rev.sfr.net [IPv6:2a02:8429:8174:401:9a7f:8789:6b2c:98e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: dafna) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id ED7B3261098; Tue, 22 Oct 2019 09:46:26 +0100 (BST) From: Dafna Hirschfeld To: linux-media@vger.kernel.org Cc: dafna.hirschfeld@collabora.com, helen.koike@collabora.com, ezequiel@collabora.com, andre.almeida@collabora.com, skhan@linuxfoundation.org, hverkuil@xs4all.nl, kernel@collabora.com, dafna3@gmail.com Subject: [PATCH 0/2] media: vimc: cleanup - remove unused code Date: Tue, 22 Oct 2019 10:46:06 +0200 Message-Id: <20191022084608.18939-1-dafna.hirschfeld@collabora.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org This patchset removes code and declarations that are not used. - The first patch removes the declarations EXPORT_SYMBOL_GPL. Those are not needed since vimc is now a single kernel module so it does not need to export any symbol. - The second patch removes the function vimc_pipeline_s_stream in the vimc-common.c file since it is not in use. Dafna Hirschfeld (2): media: vimc: remove EXPORT_SYMBOL_GPL declarations media: vimc: common: remove unused function 'vimc_pipeline_s_stream' drivers/media/platform/vimc/vimc-common.c | 36 --------------------- drivers/media/platform/vimc/vimc-common.h | 11 ------- drivers/media/platform/vimc/vimc-streamer.c | 1 - 3 files changed, 48 deletions(-)