Re: Fwd: Fujitsu PrimePower 450 with SPARC64 V & Linux support

2016-10-28 Thread Stanislav Kholmanskikh
On 10/27/2016 08:50 PM, Allan Tsakuhhin wrote: > I am trying to build Linux system on Fujitsu PrimePower 450 running by > SPARC64 V CPUs. Does anyone have supportive materials (manuals, > overviews, specs) about Fujitsu PP450 and SPARC64 V CPUs. Every kind > of source material may be useful! > >

Re: [PATCH] staging: wilc1000: restore wilc_spi_dev variable

2015-10-18 Thread Stanislav Kholmanskikh
Hi! On 16.10.2015 23:05, Arnd Bergmann wrote: > A recent change to wilc1000 accidentally deleted an important > variable, so we now get a build error when the SPI mode is > selected: > > ERROR: "wilc_spi_dev" [drivers/staging/wilc1000/wilc1000.ko] undefined! > > This partially reverts the broken

[PATCH] staging: wilc1000: remove WILC1000_DYNAMICALLY_ALLOCATE_MEMROY

2015-10-10 Thread Stanislav Kholmanskikh
The config option in the subject may be removed, because, indeed, it only serves as the 'n' value for CONFIG_WILC1000_PREALLOCATE_AT_LOADING_DRIVER Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/Kconfig | 15 ++- drivers/staging/wilc1000/Makefile |

[PATCH] staging: wilc1000: typo in WILC1000_DYNAMICALLY_ALLOCATE_MEMROY

2015-10-09 Thread Stanislav Kholmanskikh
Looking at the code, it seems that "MEMROY" in the config option name is a typo. It should be "MEMORY" instead. Changed the config option name accordingly. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/Kconfig | 2 +- drivers/staging/wilc1000/Make

staging: wilc1000: WILC1000_DYNAMICALLY_ALLOCATE_MEMROY

2015-10-08 Thread Stanislav Kholmanskikh
Hi! I noticed that drivers/staging/wilc1000/Kconfic defines: config WILC1000_DYNAMICALLY_ALLOCATE_MEMROY bool "Dynamically allocate memory in real time" ---help--- This choice supports dynamic allocation of the memory for the receive buffer. The driver will all

[PATCH 2/2] staging: wilc1000: linux_wlan_spi: include header

2015-10-08 Thread Stanislav Kholmanskikh
i.c:402:5: warning: symbol 'linux_spi_set_max_speed' was not declared. Should it be static? Let's avoid it by including "linux_wlan_spi.h" header. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/linux_wlan_spi.c | 2 +- 1 file changed, 1 inserti

[PATCH 1/2] staging: wilc1000: linux_wlan_spi: correct types

2015-10-08 Thread Stanislav Kholmanskikh
7; instead. Changed the types of their arguments to satisfy the expectations. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/linux_wlan_spi.c | 12 ++-- drivers/staging/wilc1000/linux_wlan_spi.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drive

Re: [PATCH v4 2/2] staging: wilc1000: Align enum members in coreconfigurator

2015-06-10 Thread Stanislav Kholmanskikh
On Tue, Jun 09, 2015 at 10:39:55AM -0700, Greg KH wrote: > On Mon, Jun 08, 2015 at 11:54:29PM +0300, Stanislav Kholmanskikh wrote: > > Aligned enum members to follow a common style per enum. > > You also reformatted defines, which you didn't mention here :( Sorry. :( I'

[PATCH v5 2/3] staging: wilc1000: coreconfigurator: Change return(X) to return X

2015-06-10 Thread Stanislav Kholmanskikh
Changed 'return(X)' to 'return X' in coreconfigurator.c to satisfy checkpatch.pl warning: ERROR: return is not a function, parentheses are not required Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 8 1 file changed

[PATCH v5 3/3] staging: wilc1000: coreconfigurator: Align enums and defines

2015-06-10 Thread Stanislav Kholmanskikh
Aligned enum members and defines to follow a common style per enum/(group of defines). Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 29 +++--- drivers/staging/wilc1000/coreconfigurator.h | 62 ++--- 2 files changed, 46

[PATCH v5 1/3] staging: wilc1000: coreconfigurator: Remove spaces before "\n"

2015-06-10 Thread Stanislav Kholmanskikh
In accordance to checkpatch.pl, a space before a quoted newline ("\n") is unnecessary, therefore substituted " \n" with "\n" in coreconfigurator.c Signed-off-by: Stanislav Kholmanskikh --- Changes since V4: * Split [PATCH V4 1/2] into two patches. I

Re: [PATCH v3 1/2] staging: wilc1000: Cleanup to coreconfigurator

2015-06-08 Thread Stanislav Kholmanskikh
On Mon, Jun 08, 2015 at 12:41:08PM -0700, Greg KH wrote: > On Tue, Jun 02, 2015 at 12:55:06PM +0400, Stanislav Kholmanskikh wrote: > > Fixed several syntax/style issues found with checkpatch.pl. > > What exactly is "several"? Please be specific as to what type of

[PATCH v4 2/2] staging: wilc1000: Align enum members in coreconfigurator

2015-06-08 Thread Stanislav Kholmanskikh
Aligned enum members to follow a common style per enum. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 29 +++--- drivers/staging/wilc1000/coreconfigurator.h | 62 ++--- 2 files changed, 46 insertions(+), 45 deletions

[PATCH v4 1/2] staging: wilc1000: Cleanup to coreconfigurator

2015-06-08 Thread Stanislav Kholmanskikh
Fixed the following issues found with checkpatch.pl: * Multiple debug strings contained " \n". Changed it to "\n". * Changed 'return(X)' to 'return X'. * Aligned TAG_PARAM_OFFSET to fit 80 columns Signed-off-by: Stanislav Kholmanskikh --- Changes sinc

[PATCH v3 2/2] staging: wilc1000: Align enum members in coreconfigurator

2015-06-02 Thread Stanislav Kholmanskikh
Aligned enum members to follow a common style per enum. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 29 +++--- drivers/staging/wilc1000/coreconfigurator.h | 62 ++--- 2 files changed, 46 insertions(+), 45 deletions

[PATCH v3 1/2] staging: wilc1000: Cleanup to coreconfigurator

2015-06-02 Thread Stanislav Kholmanskikh
Fixed several syntax/style issues found with checkpatch.pl. Signed-off-by: Stanislav Kholmanskikh --- Changes since V2: * The first 2 patches were removed, because what they fix is already fixed now. drivers/staging/wilc1000/coreconfigurator.c | 24 1 file changed, 12

Re: [PATCH 1/2] staging: wilc1000: Fix some compile warnings

2015-06-01 Thread Stanislav Kholmanskikh
Hello. On Sun, May 31, 2015 at 08:59:41AM +0900, Greg KH wrote: > On Sat, May 30, 2015 at 11:44:18PM +0300, Stanislav Kholmanskikh wrote: > > This patch reduces (a little bit) the amount of compile time > > warnings. > > > > The change of WILC_WFI_init_mon_interface

[PATCH v2 4/4] staging: wilc1000: Align enum members in coreconfigurator

2015-06-01 Thread Stanislav Kholmanskikh
Aligned enum members to follow a common style per enum. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 29 +++--- drivers/staging/wilc1000/coreconfigurator.h | 62 ++--- 2 files changed, 46 insertions(+), 45 deletions

[PATCH v2 3/4] staging: wilc1000: Cleanup to coreconfigurator

2015-06-01 Thread Stanislav Kholmanskikh
Fixed several syntax/style issues found with checkpatch.pl. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers

[PATCH v2 2/4] staging: wilc1000: Change the prototype of WILC_WFI_init_mon_interface

2015-06-01 Thread Stanislav Kholmanskikh
WILC_WFI_init_mon_interface() should be declared with 'const char *name', not simply 'char *name', because this 'name' argument is only passed as is to alloc_netdev(), and alloc_netdev(), in turn, expects 'const char *'. Signed-off-by: Stanislav Kho

[PATCH v2 1/4] staging: wilc1000: Fix some compile time warnings

2015-06-01 Thread Stanislav Kholmanskikh
Signed-off-by: Stanislav Kholmanskikh --- Changes since V1: Split the V1 series into more logically unrelated patches and updated patch descriptions accordingly. drivers/staging/wilc1000/wilc_spi.c | 6 +++--- drivers/staging/wilc1000/wilc_wlan.c | 6 ++ 2 files changed, 5 insertions

[PATCH 2/2] staging: wilc1000: Cleanup to coreconfigurator

2015-05-30 Thread Stanislav Kholmanskikh
Fixed several syntax/style issues found with checkpatch.pl, plus aligned structs/enums to follow a common style per struct/enum. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/coreconfigurator.c | 53 drivers/staging/wilc1000/coreconfigurator.h | 64

[PATCH 1/2] staging: wilc1000: Fix some compile warnings

2015-05-30 Thread Stanislav Kholmanskikh
This patch reduces (a little bit) the amount of compile time warnings. The change of WILC_WFI_init_mon_interface() prototype seems to be ok, because alloc_netdev() also expects 'const char *name'. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/linux_mon.c