From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH] fjes: Do not load fjes driver if system does not have extended socket device. Date: Tue, 07 Mar 2017 13:44:40 -0800 (PST) Message-ID: <20170307.134440.1909011889217005504.davem@davemloft.net> References: Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, izumi.taku@jp.fujitsu.com To: yasu.isimatu@gmail.com Return-path: Received: from shards.monkeyblade.net ([184.105.139.130]:38164 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751302AbdCGWmn (ORCPT ); Tue, 7 Mar 2017 17:42:43 -0500 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: From: Yasuaki Ishimatsu Date: Thu, 2 Mar 2017 11:56:44 -0500 > + > /* fjes_init_module - Driver Registration Routine */ > static int __init fjes_init_module(void) > { > int result; > + bool found = false; > + Please order local variable declarations from longest to shortest line. Thanks.