[PATCH] powerpc: remove rejected merge file from arch/powerpc/kernel in linux-next

2012-07-12 Thread Gerard Snitselaar
Commit 9778b696 (powerpc: Use CURRENT_THREAD_INFO instead of open coded assembly) got a rejected merge file iommu.c.rej committed with it. Signed-off-by: Gerard Snitselaar --- arch/powerpc/kernel/iommu.c.rej | 22 -- 1 file changed, 22 deletions(-) delete mode 100644 arch

[PATCH] powerpc: remove rejected merge file from arch/powerpc/kernel in linux-next

2012-07-12 Thread Gerard Snitselaar
Commit 9778b696 (powerpc: Use CURRENT_THREAD_INFO instead of open coded assembly) got a rejected merge file iommu.c.rej committed with it. Signed-off-by: Gerard Snitselaar d...@snitselaar.org --- arch/powerpc/kernel/iommu.c.rej | 22 -- 1 file changed, 22 deletions(-) delete

[PATCH] iio: dac: ad5064: fix section mismatch in ad5064_init() in linux-next

2012-07-10 Thread Gerard Snitselaar
ad5064_init() calls ad5064_spi_unregister_driver() which is annotated __exit. Signed-off-by: Gerard Snitselaar --- drivers/iio/dac/ad5064.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/dac/ad5064.c b/drivers/iio/dac/ad5064.c index aa739c4..6ec1319 100644

Re: [PATCH] usb: twl6030-usb: variable otg not declared in twl6030_usbotg_irq() in linux-next

2012-07-10 Thread Gerard Snitselaar
Yes, ignore my patch. It was applied to usb-next already and I forgot to check there. Jerry On Tue Jul 10 12, Greg KH wrote: > On Mon, Jul 09, 2012 at 11:32:20PM -0700, Gerard Snitselaar wrote: > > commit ff9cce82 added back 2 lines that were removed by commit > > c83a854

[PATCH] usb: twl6030-usb: variable otg not declared in twl6030_usbotg_irq() in linux-next

2012-07-10 Thread Gerard Snitselaar
commit ff9cce82 added back 2 lines that were removed by commit c83a8542 causing build of twl6030-usb to get an error due to otg being referenced, but not declared. This patch removes those 2 lines again to restore intent of commit c83a8542. Signed-off-by: Gerard Snitselaar --- drivers/usb/otg

[PATCH] usb: twl6030-usb: variable otg not declared in twl6030_usbotg_irq() in linux-next

2012-07-10 Thread Gerard Snitselaar
commit ff9cce82 added back 2 lines that were removed by commit c83a8542 causing build of twl6030-usb to get an error due to otg being referenced, but not declared. This patch removes those 2 lines again to restore intent of commit c83a8542. Signed-off-by: Gerard Snitselaar d...@snitselaar.org

Re: [PATCH] usb: twl6030-usb: variable otg not declared in twl6030_usbotg_irq() in linux-next

2012-07-10 Thread Gerard Snitselaar
Yes, ignore my patch. It was applied to usb-next already and I forgot to check there. Jerry On Tue Jul 10 12, Greg KH wrote: On Mon, Jul 09, 2012 at 11:32:20PM -0700, Gerard Snitselaar wrote: commit ff9cce82 added back 2 lines that were removed by commit c83a8542 causing build of twl6030

[PATCH] iio: dac: ad5064: fix section mismatch in ad5064_init() in linux-next

2012-07-10 Thread Gerard Snitselaar
ad5064_init() calls ad5064_spi_unregister_driver() which is annotated __exit. Signed-off-by: Gerard Snitselaar d...@snitselaar.org --- drivers/iio/dac/ad5064.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iio/dac/ad5064.c b/drivers/iio/dac/ad5064.c index aa739c4

[PATCH] gpio/gpio-tps65910: gpio_chip.of_node referenced without CONFIG_OF_GPIO defined

2012-07-09 Thread Gerard Snitselaar
From: Jerry Snitselaar commit 626f9914 added code to initialize gpio_chip.of_node, but if CONFIG_OF_GPIO is not defined gps-tps65910 fails to build with an error complaining gpio_chip has no member of_node. I ran into this while doing a allyesconfig build on linux-next. Signed-off-by: Gerard

[PATCH] gpio/gpio-tps65910: gpio_chip.of_node referenced without CONFIG_OF_GPIO defined

2012-07-09 Thread Gerard Snitselaar
. Signed-off-by: Gerard Snitselaar d...@snitselaar.org --- drivers/gpio/gpio-tps65910.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpio/gpio-tps65910.c b/drivers/gpio/gpio-tps65910.c index 0749f96..11f29c8 100644 --- a/drivers/gpio/gpio-tps65910.c +++ b/drivers/gpio/gpio-tps65910.c

Question regardings inodes and anon_hash_chain in 2.4/2.6

2005-08-25 Thread Gerard Snitselaar
I know that anon_hash_chain has gone away in 2.6 because the inodes for special filesystems like sockfs, pipefs, etc are now associated with a superblock. Should these inodes have i_hash linked into the inode hashtable then? It appears in 2.4 now they are associated with superblocks as well. I

Question regardings inodes and anon_hash_chain in 2.4/2.6

2005-08-25 Thread Gerard Snitselaar
I know that anon_hash_chain has gone away in 2.6 because the inodes for special filesystems like sockfs, pipefs, etc are now associated with a superblock. Should these inodes have i_hash linked into the inode hashtable then? It appears in 2.4 now they are associated with superblocks as well. I