From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752717AbaIOMqV (ORCPT ); Mon, 15 Sep 2014 08:46:21 -0400 Received: from mail.mev.co.uk ([62.49.15.74]:34892 "EHLO mail.mev.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752670AbaIOMqU (ORCPT ); Mon, 15 Sep 2014 08:46:20 -0400 From: Ian Abbott To: driverdev-devel@linuxdriverproject.org Cc: Greg Kroah-Hartman , Ian Abbott , H Hartley Sweeten , linux-kernel@vger.kernel.org Subject: [PATCH 00/11] staging: comedi: move comedi_fc functionality into core Date: Mon, 15 Sep 2014 13:45:56 +0100 Message-Id: <1410785167-28506-1-git-send-email-abbotti@mev.co.uk> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The "comedi_fc" module contains a few functions for use by several low-level comedi drivers. Since they are used by quite a few drivers, it seems useful to migrate their functionality to the core "comedi" module, renaming them in the process, while keeping the original function names in "drivers/comedi_fc.h" available for now. This set of patches accomplishes that. The next stages after this will be to migrate the remaining inline functions from "drivers/comedi_fc.h" (possibly making them externally exported functions, although they are rather short), and then to update the low-level drivers to call the functions with the new names, eliminating the need to include "comedi_fc.h". Then "drivers/comedi_fc.h" can be removed as well. Note that PATCH 10 has a couple of checkpatch warnings due to changing an existing block comment in non-standard block-comment style. PATCH 11 has a checkpatch warning to check whether MAINTAINERS needs updating. It doesn't. PATCH 11 might conflict with some other patch series that haven't been committed yet. 01) staging: comedi: add comedi_bytes_per_scan() 02) staging: comedi: comedi_fc: use comedi_bytes_per_scan() 03) staging: comedi: add comedi_inc_scan_progress() 04) staging: comedi: comedi_fc: use comedi_inc_scan_progress() 05) staging: comedi: add comedi_handle_events() 06) staging: comedi: comedi_fc: cfc_write_array_to_buffer() data is const 07) staging: comedi: add comedi_write_array_to_buffer() 08) staging: comedi: comedi_fc.h: use comedi_write_array_to_buffer() 09) staging: comedi: add comedi_read_array_from_buffer() 10) staging: comedi: migrate copyrights from "comedi_fc.c" 11) staging: comedi: remove comedi_fc module drivers/staging/comedi/Kconfig | 31 ------- drivers/staging/comedi/comedi_buf.c | 66 +++++++++++++++ drivers/staging/comedi/comedidev.h | 11 +++ drivers/staging/comedi/drivers.c | 95 +++++++++++++++++++++ drivers/staging/comedi/drivers/Makefile | 1 - drivers/staging/comedi/drivers/comedi_fc.c | 132 ----------------------------- drivers/staging/comedi/drivers/comedi_fc.h | 40 ++++++--- 7 files changed, 201 insertions(+), 175 deletions(-) From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 3C3B61C242B for ; Mon, 15 Sep 2014 12:46:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E524091C40 for ; Mon, 15 Sep 2014 12:46:21 +0000 (UTC) Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iTs96KerIYma for ; Mon, 15 Sep 2014 12:46:20 +0000 (UTC) Received: from mail.mev.co.uk (mail.mev.co.uk [62.49.15.74]) by whitealder.osuosl.org (Postfix) with ESMTP id 91C9291C34 for ; Mon, 15 Sep 2014 12:46:20 +0000 (UTC) From: Ian Abbott Subject: [PATCH 00/11] staging: comedi: move comedi_fc functionality into core Date: Mon, 15 Sep 2014 13:45:56 +0100 Message-Id: <1410785167-28506-1-git-send-email-abbotti@mev.co.uk> List-Id: Linux Driver Project Developer List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: driverdev-devel-bounces@linuxdriverproject.org Sender: driverdev-devel-bounces@linuxdriverproject.org To: driverdev-devel@linuxdriverproject.org Cc: Greg Kroah-Hartman , Ian Abbott , linux-kernel@vger.kernel.org The "comedi_fc" module contains a few functions for use by several low-level comedi drivers. Since they are used by quite a few drivers, it seems useful to migrate their functionality to the core "comedi" module, renaming them in the process, while keeping the original function names in "drivers/comedi_fc.h" available for now. This set of patches accomplishes that. The next stages after this will be to migrate the remaining inline functions from "drivers/comedi_fc.h" (possibly making them externally exported functions, although they are rather short), and then to update the low-level drivers to call the functions with the new names, eliminating the need to include "comedi_fc.h". Then "drivers/comedi_fc.h" can be removed as well. Note that PATCH 10 has a couple of checkpatch warnings due to changing an existing block comment in non-standard block-comment style. PATCH 11 has a checkpatch warning to check whether MAINTAINERS needs updating. It doesn't. PATCH 11 might conflict with some other patch series that haven't been committed yet. 01) staging: comedi: add comedi_bytes_per_scan() 02) staging: comedi: comedi_fc: use comedi_bytes_per_scan() 03) staging: comedi: add comedi_inc_scan_progress() 04) staging: comedi: comedi_fc: use comedi_inc_scan_progress() 05) staging: comedi: add comedi_handle_events() 06) staging: comedi: comedi_fc: cfc_write_array_to_buffer() data is const 07) staging: comedi: add comedi_write_array_to_buffer() 08) staging: comedi: comedi_fc.h: use comedi_write_array_to_buffer() 09) staging: comedi: add comedi_read_array_from_buffer() 10) staging: comedi: migrate copyrights from "comedi_fc.c" 11) staging: comedi: remove comedi_fc module drivers/staging/comedi/Kconfig | 31 ------- drivers/staging/comedi/comedi_buf.c | 66 +++++++++++++++ drivers/staging/comedi/comedidev.h | 11 +++ drivers/staging/comedi/drivers.c | 95 +++++++++++++++++++++ drivers/staging/comedi/drivers/Makefile | 1 - drivers/staging/comedi/drivers/comedi_fc.c | 132 ----------------------------- drivers/staging/comedi/drivers/comedi_fc.h | 40 ++++++--- 7 files changed, 201 insertions(+), 175 deletions(-) _______________________________________________ devel mailing list devel@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel