Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1296679 > unrolled thread
| Started by | Okash Khawaja <okash.khawaja@gmail.com> |
|---|---|
| First post | 2015-12-22 11:30 +0100 |
| Last post | 2015-12-22 14:40 +0100 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] next: media: cx231xx: add #ifdef to fix compile error Okash Khawaja <okash.khawaja@gmail.com> - 2015-12-22 11:30 +0100
Re: [PATCH] next: media: cx231xx: add #ifdef to fix compile error Javier Martinez Canillas <javier@osg.samsung.com> - 2015-12-22 13:50 +0100
Re: [PATCH] next: media: cx231xx: add #ifdef to fix compile error Okash Khawaja <okash.khawaja@gmail.com> - 2015-12-22 14:10 +0100
Re: [PATCH] next: media: cx231xx: add #ifdef to fix compile error Javier Martinez Canillas <javier@osg.samsung.com> - 2015-12-22 14:10 +0100
Re: [PATCH] next: media: cx231xx: add #ifdef to fix compile error Okash Khawaja <okash.khawaja@gmail.com> - 2015-12-22 14:40 +0100
| From | Okash Khawaja <okash.khawaja@gmail.com> |
|---|---|
| Date | 2015-12-22 11:30 +0100 |
| Subject | [PATCH] next: media: cx231xx: add #ifdef to fix compile error |
| Message-ID | <qIsmB-2Gt-3@gated-at.bofh.it> |
Compiling linux-next gave this warning: drivers/media/usb/cx231xx/cx231xx-cards.c: In function ‘cx231xx_usb_probe’: drivers/media/usb/cx231xx/cx231xx-cards.c:1754:36: error: ‘struct cx231xx’ has no member named ‘media_dev’ retval = media_device_register(dev->media_dev); Looking at the refactoring in past two commits, following seems like a decent fix, i.e. to surround dev->media_dev by #ifdef CONFIG_MEDIA_CONTROLLER. Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com> --- drivers/media/usb/cx231xx/cx231xx-cards.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c index 35692d1..220a5db 100644 --- a/drivers/media/usb/cx231xx/cx231xx-cards.c +++ b/drivers/media/usb/cx231xx/cx231xx-cards.c @@ -1751,7 +1751,9 @@ static int cx231xx_usb_probe(struct usb_interface *interface, if (retval < 0) goto done; +#ifdef CONFIG_MEDIA_CONTROLLER retval = media_device_register(dev->media_dev); +#endif done: if (retval < 0) -- 2.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-12-22 13:50 +0100 |
| Message-ID | <qIuy6-41F-13@gated-at.bofh.it> |
| In reply to | #1296679 |
Hello Okash, On 12/22/2015 07:27 AM, Okash Khawaja wrote: > Compiling linux-next gave this warning: > > drivers/media/usb/cx231xx/cx231xx-cards.c: In function > ‘cx231xx_usb_probe’: > drivers/media/usb/cx231xx/cx231xx-cards.c:1754:36: error: ‘struct > cx231xx’ has no member named ‘media_dev’ > retval = media_device_register(dev->media_dev); > > Looking at the refactoring in past two commits, following seems like a > decent fix, i.e. to surround dev->media_dev by #ifdef > CONFIG_MEDIA_CONTROLLER. > > Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com> > --- > drivers/media/usb/cx231xx/cx231xx-cards.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c > index 35692d1..220a5db 100644 > --- a/drivers/media/usb/cx231xx/cx231xx-cards.c > +++ b/drivers/media/usb/cx231xx/cx231xx-cards.c > @@ -1751,7 +1751,9 @@ static int cx231xx_usb_probe(struct usb_interface *interface, > if (retval < 0) > goto done; > > +#ifdef CONFIG_MEDIA_CONTROLLER > retval = media_device_register(dev->media_dev); > +#endif > > done: > if (retval < 0) > Thanks for your patch, I've posted the same fix already: https://lkml.org/lkml/2015/12/21/270 Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Okash Khawaja <okash.khawaja@gmail.com> |
|---|---|
| Date | 2015-12-22 14:10 +0100 |
| Message-ID | <qIuRt-4nK-23@gated-at.bofh.it> |
| In reply to | #1296769 |
On Tue, Dec 22, 2015 at 09:46:19AM -0300, Javier Martinez Canillas wrote: > Hello Okash, > > On 12/22/2015 07:27 AM, Okash Khawaja wrote: > > Compiling linux-next gave this warning: > > > > drivers/media/usb/cx231xx/cx231xx-cards.c: In function > > ‘cx231xx_usb_probe’: > > drivers/media/usb/cx231xx/cx231xx-cards.c:1754:36: error: ‘struct > > cx231xx’ has no member named ‘media_dev’ > > retval = media_device_register(dev->media_dev); > > > > Looking at the refactoring in past two commits, following seems like a > > decent fix, i.e. to surround dev->media_dev by #ifdef > > CONFIG_MEDIA_CONTROLLER. > > > > Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com> > > --- > > drivers/media/usb/cx231xx/cx231xx-cards.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c > > index 35692d1..220a5db 100644 > > --- a/drivers/media/usb/cx231xx/cx231xx-cards.c > > +++ b/drivers/media/usb/cx231xx/cx231xx-cards.c > > @@ -1751,7 +1751,9 @@ static int cx231xx_usb_probe(struct usb_interface *interface, > > if (retval < 0) > > goto done; > > > > +#ifdef CONFIG_MEDIA_CONTROLLER > > retval = media_device_register(dev->media_dev); > > +#endif > > > > done: > > if (retval < 0) > > > > Thanks for your patch, I've posted the same fix already: > > https://lkml.org/lkml/2015/12/21/270 > > Best regards, > -- > Javier Martinez Canillas > Open Source Group > Samsung Research America Cool. There was another similar compile error https://lkml.org/lkml/2015/12/22/196 Thanks, Okash -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-12-22 14:10 +0100 |
| Message-ID | <qIuRt-4nK-25@gated-at.bofh.it> |
| In reply to | #1296777 |
Hello Okash, On 12/22/2015 10:00 AM, Okash Khawaja wrote: [snip] > > Cool. There was another similar compile error > > https://lkml.org/lkml/2015/12/22/196 > Yes and you can see in that thread that I also mention that was fixed already :) > Thanks, > Okash > Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Okash Khawaja <okash.khawaja@gmail.com> |
|---|---|
| Date | 2015-12-22 14:40 +0100 |
| Message-ID | <qIvkt-4y4-1@gated-at.bofh.it> |
| In reply to | #1296778 |
> On 22 Dec 2015, at 13:08, Javier Martinez Canillas <javier@osg.samsung.com> wrote: > > Hello Okash, > > On 12/22/2015 10:00 AM, Okash Khawaja wrote: > > [snip] > >> >> Cool. There was another similar compile error >> >> https://lkml.org/lkml/2015/12/22/196 > > Yes and you can see in that thread that I also mention > that was fixed already :) > >> Thanks, >> Okash > > Best regards, > -- > Javier Martinez Canillas > Open Source Group > Samsung Research America Of course! I'm blind. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web