Just two nits.

Andy Lutomirski schreef op vr 06-03-2015 om 18:50 [-0800]:

> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -149,6 +149,24 @@ config I2C_ISMT
>         This driver can also be built as a module.  If so, the module will be
>         called i2c-ismt.
>  
> +config I2C_IMC
> +     tristate "Intel iMC (LGA 2011) SMBus Controller"
> +     depends on PCI && X86
> +     select I2C_DIMM_BUS

The pedant in me can't help but notice that I2C_DIMM_BUS itself is added
in patch 2/2. And so is the call of i2c_scan_dimm_bus() in i2c-imc.c
that apparently requires this select. So that select isn't really needed
in this patch but in 2/2.

> +     help
> +       If you say yes to this option, support will be included for the Intel
> +       Integrated Memory Controller SMBus host controller interface.  This
> +       controller is found on LGA 2011 Xeons and Core i7 Extremes.
> +
> +       There are currently no systems on which the kernel knows that it can
> +       safely enable this driver.  For now, you need to pass this driver a
> +       scary module parameter, and you should only pass that parameter if you
> +       have a special motherboard and know exactly what you are doing.
> +       Special motherboards include the Supermicro X9DRH-iF-NV.
> +
> +       This driver can also be built as a module.  If so, the module will be
> +       called i2c-imc.
> +
>  config I2C_PIIX4
>       tristate "Intel PIIX4 and compatible 
> (ATI/AMD/Serverworks/Broadcom/SMSC)"
>       depends on PCI

> --- /dev/null
> +++ b/drivers/i2c/busses/i2c-imc.c
> @@ -0,0 +1,583 @@
> +/*
> + * Copyright (c) 2013 Andrew Lutomirski <l...@amacapital.net>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2
> + * as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
> + */

This states the license is GPL v2.

> +MODULE_LICENSE("GPL");

So you probably want to use
    MODULE_LICENSE("GPL v2");

here.


Paul Bolle


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to