Skip to content

Commit

Permalink
Merge tag 'devicetree-fixes-for-4.2' of git://git.kernel.org/pub/scm/…
Browse files Browse the repository at this point in the history
…linux/kernel/git/robh/linux

Pull devicetree fixes from Rob Herring:
 "A handful of DT related fixes for 4.2-rc"

* tag 'devicetree-fixes-for-4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
  of: Drop owner assignment from platform and i2c driver
  DEVICETREE: Misc fix for the AR7100 SPI controller binding
  of: constify drv arg of of_driver_match_device stub
  of: add HAS_IOMEM depends to OF_ADDRESS
  • Loading branch information
Linus Torvalds committed Jul 28, 2015
2 parents 90c8acc + 599ad5a commit 02ff371
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Documentation/devicetree/bindings/spi/spi-ath79.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Binding for Qualcomm Atheros AR7xxx/AR9xxx SPI controller
Required properties:
- compatible: has to be "qca,<soc-type>-spi", "qca,ar7100-spi" as fallback.
- reg: Base address and size of the controllers memory area
- clocks: phandle to the AHB clock.
- clocks: phandle of the AHB clock.
- clock-names: has to be "ahb".
- #address-cells: <1>, as required by generic SPI binding.
- #size-cells: <0>, also as required by generic SPI binding.
Expand All @@ -12,9 +12,9 @@ Child nodes as per the generic SPI binding.

Example:

spi@1F000000 {
spi@1f000000 {
compatible = "qca,ar9132-spi", "qca,ar7100-spi";
reg = <0x1F000000 0x10>;
reg = <0x1f000000 0x10>;

clocks = <&pll 2>;
clock-names = "ahb";
Expand Down
2 changes: 1 addition & 1 deletion drivers/of/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ config OF_DYNAMIC

config OF_ADDRESS
def_bool y
depends on !SPARC
depends on !SPARC && HAS_IOMEM
select OF_ADDRESS_PCI if PCI

config OF_ADDRESS_PCI
Expand Down
3 changes: 0 additions & 3 deletions drivers/of/unittest.c
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
.remove = unittest_remove,
.driver = {
.name = "unittest",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(unittest_match),
},
};
Expand Down Expand Up @@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
static struct i2c_driver unittest_i2c_dev_driver = {
.driver = {
.name = "unittest-i2c-dev",
.owner = THIS_MODULE,
},
.probe = unittest_i2c_dev_probe,
.remove = unittest_i2c_dev_remove,
Expand Down Expand Up @@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
static struct i2c_driver unittest_i2c_mux_driver = {
.driver = {
.name = "unittest-i2c-mux",
.owner = THIS_MODULE,
},
.probe = unittest_i2c_mux_probe,
.remove = unittest_i2c_mux_remove,
Expand Down
2 changes: 1 addition & 1 deletion include/linux/of_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void of_dma_configure(struct device *dev, struct device_node *np);
#else /* CONFIG_OF */

static inline int of_driver_match_device(struct device *dev,
struct device_driver *drv)
const struct device_driver *drv)
{
return 0;
}
Expand Down

0 comments on commit 02ff371

Please sign in to comment.