| Submitter | Stephen Warren |
|---|---|
| Date | May 14, 2012, 7:46 p.m. |
| Message ID | <1337024794-25269-1-git-send-email-swarren@wwwdotorg.org> |
| Download | mbox |
| Permalink | /patch/159140/ |
| State | New |
| Headers | show |
Pull-request
git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git for-3.5/ahbComments
On Monday 14 May 2012, Stephen Warren wrote: > I meant to send this with the other two pull requests this morning, but > forgot:-( > > This is the last pull request I intend to send for 3.5, except for any > bugs that crop up. > > ---------------------------------------------------------------- > > The following changes since commit e816b57a337ea3b755de72bec38c10c864f23015: > > Linux 3.4-rc3 > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git for-3.5/ahb > > for you to fetch changes up to 89c788bab1f0374ae05aef7560066442ceb55384: > > ARM: tegra: Add SMMU enabler in AHB > When I pull the branch, I get an extraneous commit "ARM: dt: tegra: Add device tree support for AHB" that adds nodes that are already there from another branch. I've removed that commit and applied the rest to next/drivers. Please check what I have now. Thanks, Arnd
On 05/14/2012 02:55 PM, Arnd Bergmann wrote: > On Monday 14 May 2012, Stephen Warren wrote: >> I meant to send this with the other two pull requests this morning, but >> forgot:-( >> >> This is the last pull request I intend to send for 3.5, except for any >> bugs that crop up. >> >> ---------------------------------------------------------------- >> >> The following changes since commit e816b57a337ea3b755de72bec38c10c864f23015: >> >> Linux 3.4-rc3 >> >> are available in the git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git for-3.5/ahb >> >> for you to fetch changes up to 89c788bab1f0374ae05aef7560066442ceb55384: >> >> ARM: tegra: Add SMMU enabler in AHB >> > > When I pull the branch, I get an extraneous commit > "ARM: dt: tegra: Add device tree support for AHB" that adds nodes that are > already there from another branch. I've removed that commit and applied the > rest to next/drivers. Please check what I have now. Sorry about that. That the correct "resolution"; I simply forgot to re-push the ahb branch after I moved that commit into the dt branch.
This branch adds the Tegra AHB driver. I meant to send this with the other two pull requests this morning, but forgot:-( This is the last pull request I intend to send for 3.5, except for any bugs that crop up. ---------------------------------------------------------------- The following changes since commit e816b57a337ea3b755de72bec38c10c864f23015: Linux 3.4-rc3 are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git for-3.5/ahb for you to fetch changes up to 89c788bab1f0374ae05aef7560066442ceb55384: ARM: tegra: Add SMMU enabler in AHB ---------------------------------------------------------------- Hiroshi DOYU (2): ARM: tegra: Add Tegra AHB driver ARM: tegra: Add SMMU enabler in AHB .../bindings/arm/tegra/nvidia,tegra20-ahb.txt | 11 + arch/arm/mach-tegra/Kconfig | 8 + arch/arm/mach-tegra/include/mach/tegra-ahb.h | 19 + drivers/Makefile | 2 +- drivers/amba/Makefile | 4 +- drivers/amba/tegra-ahb.c | 293 +++++++++++++++ 6 files changed, 334 insertions(+), 3 deletions(-) create mode 100644 Documentation/devicetree/bindings/arm/tegra/nvidia,tegra20-ahb.txt create mode 100644 arch/arm/mach-tegra/include/mach/tegra-ahb.h create mode 100644 drivers/amba/tegra-ahb.c