Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752229AbbKJXnE (ORCPT ); Tue, 10 Nov 2015 18:43:04 -0500 Received: from mout.kundenserver.de ([212.227.17.10]:50859 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751892AbbKJXm5 (ORCPT ); Tue, 10 Nov 2015 18:42:57 -0500 From: Arnd Bergmann To: Greg Kroah-Hartman Cc: Johnny Kim , Austin Shin , Chris Park , Tony Cho , Glen Lee , Leo Kim , linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Arnd Bergmann Subject: [PATCH 00/20] staging/wilc1000: cleanups once again Date: Wed, 11 Nov 2015 00:42:20 +0100 Message-Id: <1447198960-2760143-1-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 2.1.0.rc2 X-Provags-ID: V03:K0:rV5wfIYDTtRFavBXJoHmqbSYyuBFux9bAz/mjJq2CxcTZGnkLCg YQughTNECa07nfozsNk6+qf3FHIbGPjw0rGVr4wfMZ5yxVJ3OIWqSE33xQv7e6iqDJ6xMFw uTEhDKhbyZRWUw6r7c4my1vrDh2phTGmrJLmhezzAN3KfjCqhsojslw5o8ufAAsd0/vz7eh fyGodiIOT7DDH9e72s6nQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:iSLi+t35UGk=:O4aBjKh4p3w2gb56Yf+vn9 jTEmxqUPjsFKZeX8Zha2Ag1ifcBWQa1zy8OgzqlN/3qiscGl6sG/tSZav1fo7JK18zjuTd6LO RlBU/H0vbj4hH2Dogg2IzvHtX3oTSs0FWN4/wVQnQmeHjj0T/oraxG/VVVhhSRXQZxtOYsG7e CWx1IeU8eX0XGe8WbG/NGlPaCrZ2OI4s+IoDwi5p8IpVSOQJBwxejo3EcKTgZx42/2jtIT6+x vQA6OD4ErEG8sTvWGZwOA+cGV9EtGRXfaC/y2sUOysJROGaoB09H7dE+qEyPFDP6oc6hmDuqa sb9YxRjGAhnSr13tiHl7rNKXMb/omNiKb09x1Lk4oJ09eB8Yg6GCOoxvzzrD8DWnoZERTYkYD pyBAm6VFMo0JaqR3jNb5ZTdYbso3AzEb4aVI6XTaxGwEtNihAFdiRbyFcfgX6hX7gx27Wp1kZ vFt+qzJu7ChtJZL3Cz5r0clgmn+9MGACeaIgJUfQipfDz8Bd+eGH6IYU/QNh/GM1qtOiTKeXO v5WC4VXduWW5+PiMa+GCkI9/0hTMWRuBOOTCq4yyZqCxzWeTfQFus5H1xRAW5qsPP8G7pYAuy Th/Lp+/USMZewdkcnkR5Xm72Pf+T7PmwGqjlh1yXlwWv6tDamqWusaHZFuH0PJd65d3vKXpjd ej8yoVGx++n/QhVwenLHqRAUZQbFT0pU0jscu4efb9gPKvDhbdhxLf0xfz80Z9Mb91WQ= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3127 Lines: 62 I have rebased the patches once more on top of a lot of renames, and would prefer not to rebase them again. This is the series of fixups that I've posted before, now for today's staging-testing branch. Please apply. Arnd Bergmann (20): staging/wilc1000: add struct net_device declaration staging/wilc1000: remove unused functions staging/wilc1000: make symbols static if possible staging/wilc1000: use proper naming for global symbols staging/wilc1000: move extern declarations to headers staging/wilc1000: use NO_SECURITY instead of NO_ENCRYPT staging/wilc1000: avoid static definitions in header staging/wilc1000: remove linux_wlan_{device_power,device_detection} staging/wilc1000: move wilc_wlan_inp_t into struct wilc staging/wilc1000: move init/exit functions to driver files staging/wilc1000: unify device pointer staging/wilc1000: pass io_type to wilc_netdev_init staging/wilc1000: use device pointer for phy creation staging/wilc1000: get rid of WILC_SDIO_IRQ_GPIO staging/wilc1000: pass hif operations through initialization staging/wilc1000: turn enable_irq/disable_irq into callbacks staging/wilc1000: remove WILC_SDIO/WILC_SPI macros staging/wilc1000: split out bus specific modules staging/wilc1000: use more regular probing staging/wilc1000: pass struct wilc to most linux_wlan.c functions drivers/staging/wilc1000/Kconfig | 66 +-- drivers/staging/wilc1000/Makefile | 14 +- drivers/staging/wilc1000/coreconfigurator.c | 14 +- drivers/staging/wilc1000/coreconfigurator.h | 16 +- drivers/staging/wilc1000/host_interface.c | 591 ++++++---------------- drivers/staging/wilc1000/host_interface.h | 119 ++--- drivers/staging/wilc1000/linux_mon.c | 11 +- drivers/staging/wilc1000/linux_wlan.c | 374 +++++--------- drivers/staging/wilc1000/linux_wlan_common.h | 22 +- drivers/staging/wilc1000/linux_wlan_sdio.c | 122 ++--- drivers/staging/wilc1000/linux_wlan_sdio.h | 19 +- drivers/staging/wilc1000/linux_wlan_spi.c | 117 ++--- drivers/staging/wilc1000/linux_wlan_spi.h | 14 +- drivers/staging/wilc1000/wilc_debugfs.c | 26 +- drivers/staging/wilc1000/wilc_sdio.c | 254 ++++------ drivers/staging/wilc1000/wilc_spi.c | 293 ++--------- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 443 ++++++++-------- drivers/staging/wilc1000/wilc_wfi_cfgoperations.h | 87 +--- drivers/staging/wilc1000/wilc_wfi_netdevice.h | 40 +- drivers/staging/wilc1000/wilc_wlan.c | 232 ++++----- drivers/staging/wilc1000/wilc_wlan.h | 40 +- drivers/staging/wilc1000/wilc_wlan_cfg.c | 6 +- drivers/staging/wilc1000/wilc_wlan_if.h | 11 +- 23 files changed, 1048 insertions(+), 1883 deletions(-) -- 2.1.0.rc2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/