lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 26 Jan 2017 11:27:00 -0800
From:   Guenter Roeck <linux@...ck-us.net>
To:     Michael Brunner <mibru@....de>
Cc:     Lee Jones <lee.jones@...aro.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        Christian Rauch <christian.rauch@...tron.com>,
        Michael Brunner <michael.brunner@...tron.com>,
        Darren Hart <dvhart@...ux.intel.com>,
        Kevin Strasser <kevin.strasser@...ux.intel.com>
Subject: Re: [PATCH] mfd: Add support for several boards to Kontron PLD driver

On Thu, Jan 26, 2017 at 05:45:46PM +0100, Michael Brunner wrote:
> This patch adds the DMI system ID of the Kontron COMe-bBD#, COMe-bKL6,
> COMe-cKL6, COMe-bSL6 and COMe-cAL6 boards to the Kontron PLD driver. The
> list of supported products in the module description is also updated.
> 
> Signed-off-by: Michael Brunner <michael.brunner@...tron.com>
> Acked-by: Christian Rauch <christian.rauch@...tron.com>

Reviewed-by: Guenter Roeck <linux@...ck-us.net>

> ---
>  drivers/mfd/Kconfig       |  5 +++++
>  drivers/mfd/kempld-core.c | 40 ++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 45 insertions(+)
> 
> diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
> index 4ce3b6f..5394125 100644
> --- a/drivers/mfd/Kconfig
> +++ b/drivers/mfd/Kconfig
> @@ -506,17 +506,22 @@ config MFD_KEMPLD
>  	  device may provide functions like watchdog, GPIO, UART and I2C bus.
>  
>  	  The following modules are supported:
> +		* COMe-bBD#
>  		* COMe-bBL6
>  		* COMe-bHL6
> +		* COMe-bSL6
>  		* COMe-bIP#
> +		* COMe-bKL6
>  		* COMe-bPC2 (ETXexpress-PC)
>  		* COMe-bSC# (ETXexpress-SC T#)
> +		* COMe-cAL6
>  		* COMe-cBL6
>  		* COMe-cBT6
>  		* COMe-cBW6
>  		* COMe-cCT6
>  		* COMe-cDC2 (microETXexpress-DC)
>  		* COMe-cHL6
> +		* COMe-cKL6
>  		* COMe-cPC2 (microETXexpress-PC)
>  		* COMe-cSL6
>  		* COMe-mAL10
> diff --git a/drivers/mfd/kempld-core.c b/drivers/mfd/kempld-core.c
> index da5722d..895f655 100644
> --- a/drivers/mfd/kempld-core.c
> +++ b/drivers/mfd/kempld-core.c
> @@ -496,6 +496,14 @@ static struct platform_driver kempld_driver = {
>  
>  static struct dmi_system_id kempld_dmi_table[] __initdata = {
>  	{
> +		.ident = "BBD6",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> +			DMI_MATCH(DMI_BOARD_NAME, "COMe-bBD"),
> +		},
> +		.driver_data = (void *)&kempld_platform_data_generic,
> +		.callback = kempld_create_platform_device,
> +	}, {
>  		.ident = "BBL6",
>  		.matches = {
>  			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> @@ -512,6 +520,30 @@ static struct dmi_system_id kempld_dmi_table[] __initdata = {
>  		.driver_data = (void *)&kempld_platform_data_generic,
>  		.callback = kempld_create_platform_device,
>  	}, {
> +		.ident = "BKL6",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> +			DMI_MATCH(DMI_BOARD_NAME, "COMe-bKL6"),
> +		},
> +		.driver_data = (void *)&kempld_platform_data_generic,
> +		.callback = kempld_create_platform_device,
> +	}, {
> +		.ident = "BSL6",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> +			DMI_MATCH(DMI_BOARD_NAME, "COMe-bSL6"),
> +		},
> +		.driver_data = (void *)&kempld_platform_data_generic,
> +		.callback = kempld_create_platform_device,
> +	}, {
> +		.ident = "CAL6",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> +			DMI_MATCH(DMI_BOARD_NAME, "COMe-cAL"),
> +		},
> +		.driver_data = (void *)&kempld_platform_data_generic,
> +		.callback = kempld_create_platform_device,
> +	}, {
>  		.ident = "CBL6",
>  		.matches = {
>  			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> @@ -600,6 +632,14 @@ static struct dmi_system_id kempld_dmi_table[] __initdata = {
>  		.driver_data = (void *)&kempld_platform_data_generic,
>  		.callback = kempld_create_platform_device,
>  	}, {
> +		.ident = "CKL6",
> +		.matches = {
> +			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> +			DMI_MATCH(DMI_BOARD_NAME, "COMe-cKL6"),
> +		},
> +		.driver_data = (void *)&kempld_platform_data_generic,
> +		.callback = kempld_create_platform_device,
> +	}, {
>  		.ident = "CNTG",
>  		.matches = {
>  			DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
> -- 
> 2.7.4

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ