From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754137AbaKRMKM (ORCPT ); Tue, 18 Nov 2014 07:10:12 -0500 Received: from mga02.intel.com ([134.134.136.20]:58094 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753266AbaKRMKJ (ORCPT ); Tue, 18 Nov 2014 07:10:09 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,409,1413270000"; d="scan'208";a="638919901" From: Laurentiu Palcu To: Mark Brown , Samuel Ortiz , Lee Jones , Johan Havold Cc: Octavian Purdila , linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, Laurentiu Palcu Subject: [PATCH v3 0/2] Add SPI support for Diolan DLN2 Date: Tue, 18 Nov 2014 14:09:57 +0200 Message-Id: <1416312599-5176-1-git-send-email-laurentiu.palcu@intel.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Short note: I couldn't see the 2nd patch applied in any mfd tree, so I included it again. Changes in v3: * fixed some coding style problems; * do not use dln2->buf for small commands, use the stack; * removed a bunch of __packed attributes that were not really needed; * change the copy from/to buffer routines to use put/get_unaligned macros to avoid potential buffer alignment issues; Changes in v2: * fixed an indentation issue; * removed redundant call to spi_master_put() in _remove(); Hi, This patchset adds support for the SPI module of the Diolan DLN2 USB to I2C/SPI/GPIO bridge [1]. This patch depends on another patchset, [1], not yet merged, which adds support for the other two modules: I2C and GPIO. [1] http://www.diolan.com/products/dln2/features.html [2] http://marc.info/?l=linux-kernel&m=141528172903850&w=2 laurentiu Laurentiu Palcu (2): spi: add support for DLN-2 USB-SPI adapter mfd: dln2: add support for USB-SPI module drivers/mfd/dln2.c | 12 + drivers/spi/Kconfig | 10 + drivers/spi/Makefile | 1 + drivers/spi/spi-dln2.c | 818 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 841 insertions(+) create mode 100644 drivers/spi/spi-dln2.c -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laurentiu Palcu Subject: [PATCH v3 0/2] Add SPI support for Diolan DLN2 Date: Tue, 18 Nov 2014 14:09:57 +0200 Message-ID: <1416312599-5176-1-git-send-email-laurentiu.palcu@intel.com> Cc: Octavian Purdila , linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Laurentiu Palcu To: Mark Brown , Samuel Ortiz , Lee Jones , Johan Havold Return-path: Sender: linux-spi-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: Short note: I couldn't see the 2nd patch applied in any mfd tree, so I included it again. Changes in v3: * fixed some coding style problems; * do not use dln2->buf for small commands, use the stack; * removed a bunch of __packed attributes that were not really needed; * change the copy from/to buffer routines to use put/get_unaligned macros to avoid potential buffer alignment issues; Changes in v2: * fixed an indentation issue; * removed redundant call to spi_master_put() in _remove(); Hi, This patchset adds support for the SPI module of the Diolan DLN2 USB to I2C/SPI/GPIO bridge [1]. This patch depends on another patchset, [1], not yet merged, which adds support for the other two modules: I2C and GPIO. [1] http://www.diolan.com/products/dln2/features.html [2] http://marc.info/?l=linux-kernel&m=141528172903850&w=2 laurentiu Laurentiu Palcu (2): spi: add support for DLN-2 USB-SPI adapter mfd: dln2: add support for USB-SPI module drivers/mfd/dln2.c | 12 + drivers/spi/Kconfig | 10 + drivers/spi/Makefile | 1 + drivers/spi/spi-dln2.c | 818 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 841 insertions(+) create mode 100644 drivers/spi/spi-dln2.c -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html