From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 543D8C433FE for ; Fri, 18 Mar 2022 13:58:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236920AbiCRN7b (ORCPT ); Fri, 18 Mar 2022 09:59:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42878 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230256AbiCRN7a (ORCPT ); Fri, 18 Mar 2022 09:59:30 -0400 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D385CE028; Fri, 18 Mar 2022 06:58:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1647611891; x=1679147891; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=ByRSBx5rOqTJKGjcMy8SnrJwR0aJYwWvkSxjlR+cUgU=; b=azkdx54bE98+d/+WUA/LKl7YEdKQL9RYRjZZgmOonc0tXzaieuoDtDKd fuW/DgmHvXKQJZYhk+l3xLrKwo2zUHxOlTYJEqaDkaDJcobY/al6UYo7V ODXLyguYPqhbIGtnCFYV47ImA3XBSXf+USCnRekRUqVcq14ntwoZGGBTs nQutNo1N6VImYL96pkCr7JIzGnppu54n+SZhtOw3YbXhmJGqj0SMuGaLp VXl+7EUGd4B1/wvwxamHs6jBr5DxIiQlpPmHgNUopbNoju1PFxq5hsfmc GzA2IdnEkuLwEfhdmQfhytZoYlKdfHuhS2FVIyb0VpBvtUmXLuNBeUJZx A==; X-IronPort-AV: E=McAfee;i="6200,9189,10289"; a="254693998" X-IronPort-AV: E=Sophos;i="5.90,192,1643702400"; d="scan'208";a="254693998" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Mar 2022 06:58:11 -0700 X-IronPort-AV: E=Sophos;i="5.90,192,1643702400"; d="scan'208";a="635760707" Received: from smile.fi.intel.com ([10.237.72.59]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Mar 2022 06:58:07 -0700 Received: from andy by smile.fi.intel.com with local (Exim 4.95) (envelope-from ) id 1nVD6e-002GAH-FV; Fri, 18 Mar 2022 15:57:28 +0200 Date: Fri, 18 Mar 2022 15:57:28 +0200 From: Andy Shevchenko To: Miquel Raynal Cc: linux-renesas-soc@vger.kernel.org, Magnus Damm , Gareth Williams , Phil Edworthy , Geert Uytterhoeven , Greg Kroah-Hartman , Jiri Slaby , Milan Stevanovic , Jimmy Lalande , Pascal Eberhard , Thomas Petazzoni , Herve Codina , Clement Leger , linux-serial@vger.kernel.org, Emil Renner Berthing Subject: Re: [PATCH v2 03/10] serial: 8250: dw: Create a more generic platform data structure Message-ID: References: <20220317174627.360815-1-miquel.raynal@bootlin.com> <20220317174627.360815-4-miquel.raynal@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220317174627.360815-4-miquel.raynal@bootlin.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org On Thu, Mar 17, 2022 at 06:46:20PM +0100, Miquel Raynal wrote: > Before adding more platform data information, let's turn the quirks > information as being a member of a wider structure. More fields will be > added later. ... > +struct dw8250_platform_data { > + unsigned long quirks; unsigned int would be better since it won't change the sizeof() depending on the hardware / compilation options. > +}; -- With Best Regards, Andy Shevchenko