regmap: Specify a module license
CONFIG_REGMAP_I2C/SPI are set to m when selected by a tristate config option that's set to m. The regmap modules don't specify a license, so fail to link to regmap_init at load time, since that is EXPORT_SYMBOL_GPL. Fix this by specifying a license for the regmap modules. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
		
					parent
					
						
							
								40c5cc2639
							
						
					
				
			
			
				commit
				
					
						b33f9cbd67
					
				
			
		
					 2 changed files with 3 additions and 0 deletions
				
			
		|  | @ -113,3 +113,4 @@ struct regmap *regmap_init_i2c(struct i2c_client *i2c, | |||
| } | ||||
| EXPORT_SYMBOL_GPL(regmap_init_i2c); | ||||
| 
 | ||||
| MODULE_LICENSE("GPL"); | ||||
|  |  | |||
|  | @ -70,3 +70,5 @@ struct regmap *regmap_init_spi(struct spi_device *spi, | |||
| 	return regmap_init(&spi->dev, ®map_spi, config); | ||||
| } | ||||
| EXPORT_SYMBOL_GPL(regmap_init_spi); | ||||
| 
 | ||||
| MODULE_LICENSE("GPL"); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Stephen Warren
				Stephen Warren