| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-04-08 | gpio: use (!foo) instead of (foo == NULL) | Varka Bhadram | 1 | -1/+1 | |
| Signed-off-by: Varka Bhadram <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2014-07-22 | gpio: remove all usage of gpio_remove retval in driver/gpio | abdoulaye berthe | 1 | -8/+3 | |
| Signed-off-by: abdoulaye berthe <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-12-04 | gpio/pinctrl: make gpio_chip members typed boolean | Linus Walleij | 1 | -1/+1 | |
| This switches the two members of struct gpio_chip that were defined as unsigned foo:1 to bool, because that is indeed what they are. Switch all users in the gpio and pinctrl subsystems to assign these values with true/false instead of 0/1. The users outside these subsystems will survive since true/false is 1/0, atleast we set some kind of more strict typing example. Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-09-23 | gpio: gpio-mc33880: Remove redundant spi_set_drvdata | Sachin Kamat | 1 | -3/+0 | |
| Driver core sets driver data to NULL upon failure or remove. Signed-off-by: Sachin Kamat <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-08-16 | gpio: use dev_get_platdata() | Jingoo Han | 1 | -1/+1 | |
| Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-03-27 | gpio: mc33880: use spi_get_drvdata() and spi_set_drvdata() | Jingoo Han | 1 | -4/+4 | |
| Use the wrapper functions for getting and setting the driver data using spi_device instead of using dev_{get|set}_drvdata with &spi->dev, so we can directly pass a struct spi_device. Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-03-27 | gpio: mc33880: use dev_err() instead of printk() | Jingoo Han | 1 | -1/+2 | |
| dev_err() is more preferred than printk(). Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2013-03-27 | gpio: mc33880: use devm_kzalloc() | Jingoo Han | 1 | -5/+3 | |
| Use devm_kzalloc() to make cleanup paths simpler. Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Linus Walleij <[email protected]> | |||||
| 2012-11-28 | gpio: remove use of __devexit | Bill Pemberton | 1 | -1/+1 | |
| CONFIG_HOTPLUG is going away as an option so __devexit is no longer needed. Signed-off-by: Bill Pemberton <[email protected]> Cc: Grant Likely <[email protected]> Acked-by: Linus Walleij <[email protected]> Cc: Peter Tyser <[email protected]> Acked-by: Mark Brown <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> | |||||
| 2012-11-28 | gpio: remove use of __devinit | Bill Pemberton | 1 | -1/+1 | |
| CONFIG_HOTPLUG is going away as an option so __devinit is no longer needed. Signed-off-by: Bill Pemberton <[email protected]> Cc: Grant Likely <[email protected]> Cc: Peter Tyser <[email protected]> Cc: Santosh Shilimkar <[email protected]> Cc: Kevin Hilman <[email protected]> Acked-by: Linus Walleij <[email protected]> Acked-by: Mark Brown <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> | |||||
| 2012-11-28 | gpio: remove use of __devexit_p | Bill Pemberton | 1 | -1/+1 | |
| CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton <[email protected]> Cc: Grant Likely <[email protected]> Cc: Peter Tyser <[email protected]> Acked-by: Linus Walleij <[email protected]> Acked-by: Mark Brown <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> | |||||
| 2011-10-31 | drivers/gpio: Fix drivers who are implicit users of module.h | Paul Gortmaker | 1 | -0/+1 | |
| A pending cleanup will mean that module.h won't be implicitly everywhere anymore. Make sure the modular drivers in gpio are actually calling out for <module.h> explicitly in advance. Signed-off-by: Paul Gortmaker <[email protected]> | |||||
| 2011-06-06 | gpio: reorganize drivers | Grant Likely | 1 | -0/+197 | |
| Sort the gpio makefile and enforce the naming convention gpio-*.c for gpio drivers. v2: cleaned up filenames in Kconfig and comment blocks v3: fixup use of BASIC_MMIO to GENERIC_GPIO for mxc Signed-off-by: Grant Likely <[email protected]> | |||||