mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 09:56:00 +00:00
gpio/tegra: Move Tegra gpio driver to drivers/gpio
As part of the gpio driver consolidation, this patch moves the Tegra driver into drivers/gpio Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
8e2943c04c
commit
e892bac102
5
Documentation/devicetree/bindings/spi/spi_nvidia.txt
Normal file
5
Documentation/devicetree/bindings/spi/spi_nvidia.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
NVIDIA Tegra 2 SPI device
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible : should be "nvidia,tegra250-spi".
|
||||||
|
- gpios : should specify GPIOs used for chipselect.
|
@ -546,6 +546,7 @@ static int __init spi_tegra_probe(struct platform_device *pdev)
|
|||||||
tspi->rx_dma_req.req_sel = spi_tegra_req_sels[pdev->id];
|
tspi->rx_dma_req.req_sel = spi_tegra_req_sels[pdev->id];
|
||||||
tspi->rx_dma_req.dev = tspi;
|
tspi->rx_dma_req.dev = tspi;
|
||||||
|
|
||||||
|
master->dev.of_node = pdev->dev.of_node;
|
||||||
ret = spi_register_master(master);
|
ret = spi_register_master(master);
|
||||||
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
@ -595,10 +596,21 @@ static int __devexit spi_tegra_remove(struct platform_device *pdev)
|
|||||||
|
|
||||||
MODULE_ALIAS("platform:spi_tegra");
|
MODULE_ALIAS("platform:spi_tegra");
|
||||||
|
|
||||||
|
#ifdef CONFIG_OF
|
||||||
|
static struct of_device_id spi_tegra_of_match_table[] __devinitdata = {
|
||||||
|
{ .compatible = "nvidia,tegra250-spi", },
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, spi_tegra_of_match_table);
|
||||||
|
#else /* CONFIG_OF */
|
||||||
|
#define spi_tegra_of_match_table NULL
|
||||||
|
#endif /* CONFIG_OF */
|
||||||
|
|
||||||
static struct platform_driver spi_tegra_driver = {
|
static struct platform_driver spi_tegra_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "spi_tegra",
|
.name = "spi_tegra",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.of_match_table = spi_tegra_of_match_table,
|
||||||
},
|
},
|
||||||
.remove = __devexit_p(spi_tegra_remove),
|
.remove = __devexit_p(spi_tegra_remove),
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user