* Stephen Warren wrote:
> On 12/19/2013 11:55 AM, Ingo Molnar wrote:
> >
> > * Stephen Warren wrote:
> >
> >> On 12/19/2013 03:13 AM, David Herrmann wrote:
> >>> With CONFIG_X86_SYSFB=y, probing real hw-drivers may result in
> >>> resource-conflicts and drivers will refuse to load. A call to
On 12/19/2013 11:55 AM, Ingo Molnar wrote:
>
> * Stephen Warren wrote:
>
>> On 12/19/2013 03:13 AM, David Herrmann wrote:
>>> With CONFIG_X86_SYSFB=y, probing real hw-drivers may result in
>>> resource-conflicts and drivers will refuse to load. A call to
>>> request_mem_region() will fail, if th
* Stephen Warren wrote:
> On 12/19/2013 03:13 AM, David Herrmann wrote:
> > With CONFIG_X86_SYSFB=y, probing real hw-drivers may result in
> > resource-conflicts and drivers will refuse to load. A call to
> > request_mem_region() will fail, if the region overlaps with the mem-region
> > used by
On 12/19/2013 03:13 AM, David Herrmann wrote:
> With CONFIG_X86_SYSFB=y, probing real hw-drivers may result in
> resource-conflicts and drivers will refuse to load. A call to
> request_mem_region() will fail, if the region overlaps with the mem-region
> used by simplefb. The common desktop DRM driv
Hi
On Thu, Dec 19, 2013 at 6:09 PM, Ingo Molnar wrote:
>
> * David Herrmann wrote:
>
>> Hi
>>
>> On Thu, Dec 19, 2013 at 5:36 PM, Ingo Molnar wrote:
>> >
>> > * David Herrmann wrote:
>> >
>> >> --- a/drivers/video/fbmem.c
>> >> +++ b/drivers/video/fbmem.c
>> >> @@ -35,6 +35,9 @@
>> >>
>> >> #
* David Herrmann wrote:
> Hi
>
> On Thu, Dec 19, 2013 at 5:36 PM, Ingo Molnar wrote:
> >
> > * David Herrmann wrote:
> >
> >> --- a/drivers/video/fbmem.c
> >> +++ b/drivers/video/fbmem.c
> >> @@ -35,6 +35,9 @@
> >>
> >> #include
> >>
> >> +#if IS_ENABLED(CONFIG_X86)
> >> +#include
> >> +#e
Hi
On Thu, Dec 19, 2013 at 5:36 PM, Ingo Molnar wrote:
>
> * David Herrmann wrote:
>
>> --- a/drivers/video/fbmem.c
>> +++ b/drivers/video/fbmem.c
>> @@ -35,6 +35,9 @@
>>
>> #include
>>
>> +#if IS_ENABLED(CONFIG_X86)
>> +#include
>> +#endif
>
> I think this can be written as:
>
> #ifdef CONFI
* David Herrmann wrote:
> --- a/drivers/video/fbmem.c
> +++ b/drivers/video/fbmem.c
> @@ -35,6 +35,9 @@
>
> #include
>
> +#if IS_ENABLED(CONFIG_X86)
> +#include
> +#endif
I think this can be written as:
#ifdef CONFIG_X86
# include
#endif
also ... the dependency on a large, unrelated o
With CONFIG_X86_SYSFB=y, probing real hw-drivers may result in
resource-conflicts and drivers will refuse to load. A call to
request_mem_region() will fail, if the region overlaps with the mem-region
used by simplefb. The common desktop DRM drivers (intel, nouveau, radeon)
are not affected as they
9 matches
Mail list logo