diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 04:06:59 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 04:06:59 +0200 |
commit | ce8aa48929449b491149b6c87861ac69cb797a42 (patch) | |
tree | 6fd8482c0b34842dfcefdaedcd86a0dbf8b0a71d /arch/sh | |
parent | Merge branch 'for-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/p... (diff) | |
parent | async: rename and redefine async_func_ptr (diff) | |
download | linux-ce8aa48929449b491149b6c87861ac69cb797a42.tar.xz linux-ce8aa48929449b491149b6c87861ac69cb797a42.zip |
Merge branch 'for-3.10-async' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Pull async update from Tejun Heo:
"This contains three cleanup patches for async from Lai. All three
patches are essentially cosmetic."
* 'for-3.10-async' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq:
async: rename and redefine async_func_ptr
async: remove unused @node from struct async_domain
async: simplify lowest_in_progress()
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/drivers/pci/pcie-sh7786.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/drivers/pci/pcie-sh7786.c b/arch/sh/drivers/pci/pcie-sh7786.c index c2c85f6cd738..a162a7f86b2e 100644 --- a/arch/sh/drivers/pci/pcie-sh7786.c +++ b/arch/sh/drivers/pci/pcie-sh7786.c @@ -35,7 +35,7 @@ static unsigned int nr_ports; static struct sh7786_pcie_hwops { int (*core_init)(void); - async_func_ptr *port_init_hw; + async_func_t port_init_hw; } *sh7786_pcie_hwops; static struct resource sh7786_pci0_resources[] = { |