All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] xorg/nouveau: rename to nouveau2
@ 2011-05-16 19:50 Marcin Slusarz
  2011-06-05 19:06 ` Marcin Slusarz
  2011-06-19 22:28 ` Marcin Slusarz
  0 siblings, 2 replies; 5+ messages in thread
From: Marcin Slusarz @ 2011-05-16 19:50 UTC (permalink / raw)
  To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
  Cc: mesa-dev-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW


---
 src/gallium/targets/xorg-nouveau/Makefile       |    2 +-
 src/gallium/targets/xorg-nouveau/nouveau_xorg.c |   14 +++++++-------
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/gallium/targets/xorg-nouveau/Makefile b/src/gallium/targets/xorg-nouveau/Makefile
index 5a2cdb1..16ac954 100644
--- a/src/gallium/targets/xorg-nouveau/Makefile
+++ b/src/gallium/targets/xorg-nouveau/Makefile
@@ -1,7 +1,7 @@
 TOP = ../../../..
 include $(TOP)/configs/current
 
-LIBNAME = modesetting_drv.so
+LIBNAME = nouveau2_drv.so
 
 C_SOURCES = \
 	nouveau_target.c \
diff --git a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
index f0d6492..a25254a 100644
--- a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
+++ b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
@@ -54,7 +54,7 @@ static PciChipsets nouveau_xorg_pci_devices[] = {
 };
 
 static XF86ModuleVersionInfo nouveau_xorg_version = {
-    "modesetting",
+    "nouveau2",
     MODULEVENDORSTRING,
     MODINFOSTRING1,
     MODINFOSTRING2,
@@ -70,9 +70,9 @@ static XF86ModuleVersionInfo nouveau_xorg_version = {
  * Xorg driver exported structures
  */
 
-_X_EXPORT DriverRec modesetting = {
+_X_EXPORT DriverRec nouveau2 = {
     1,
-    "modesetting",
+    "nouveau2",
     nouveau_xorg_identify,
     NULL,
     xorg_tracker_available_options,
@@ -85,7 +85,7 @@ _X_EXPORT DriverRec modesetting = {
 
 static MODULESETUPPROTO(nouveau_xorg_setup);
 
-_X_EXPORT XF86ModuleData modesettingModuleData = {
+_X_EXPORT XF86ModuleData nouveau2ModuleData = {
     &nouveau_xorg_version,
     nouveau_xorg_setup,
     NULL
@@ -104,7 +104,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
      */
     if (!setupDone) {
 	setupDone = 1;
-	xf86AddDriver(&modesetting, module, HaveDriverFuncs);
+	xf86AddDriver(&nouveau2, module, HaveDriverFuncs);
 
 	/*
 	 * The return value must be non-NULL on success even though there
@@ -121,7 +121,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
 static void
 nouveau_xorg_identify(int flags)
 {
-    xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
+    xf86PrintChipsets("nouveau2", "Driver for Modesetting Kernel Drivers",
 		      nouveau_xorg_chipsets);
 }
 
@@ -137,7 +137,7 @@ nouveau_xorg_pci_probe(DriverPtr driver,
     if (scrn != NULL) {
 	scrn->driverVersion = 1;
 	scrn->driverName = "nouveau";
-	scrn->name = "modesetting";
+	scrn->name = "nouveau2";
 	scrn->Probe = NULL;
 
 	entity = xf86GetEntityInfo(entity_num);
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] xorg/nouveau: rename to nouveau2
  2011-05-16 19:50 [PATCH 1/2] xorg/nouveau: rename to nouveau2 Marcin Slusarz
@ 2011-06-05 19:06 ` Marcin Slusarz
  2011-06-19 22:28 ` Marcin Slusarz
  1 sibling, 0 replies; 5+ messages in thread
From: Marcin Slusarz @ 2011-06-05 19:06 UTC (permalink / raw)
  To: nouveau; +Cc: mesa-dev

On Mon, May 16, 2011 at 09:50:29PM +0200, Marcin Slusarz wrote:
> 
> ---
>  src/gallium/targets/xorg-nouveau/Makefile       |    2 +-
>  src/gallium/targets/xorg-nouveau/nouveau_xorg.c |   14 +++++++-------
>  2 files changed, 8 insertions(+), 8 deletions(-)

ping

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] xorg/nouveau: rename to nouveau2
  2011-05-16 19:50 [PATCH 1/2] xorg/nouveau: rename to nouveau2 Marcin Slusarz
  2011-06-05 19:06 ` Marcin Slusarz
@ 2011-06-19 22:28 ` Marcin Slusarz
  2011-06-20  0:39   ` Marek Olšák
  1 sibling, 1 reply; 5+ messages in thread
From: Marcin Slusarz @ 2011-06-19 22:28 UTC (permalink / raw)
  To: nouveau; +Cc: mesa-dev

On Mon, May 16, 2011 at 09:50:29PM +0200, Marcin Slusarz wrote:
> 
> ---
>  src/gallium/targets/xorg-nouveau/Makefile       |    2 +-
>  src/gallium/targets/xorg-nouveau/nouveau_xorg.c |   14 +++++++-------
>  2 files changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/src/gallium/targets/xorg-nouveau/Makefile b/src/gallium/targets/xorg-nouveau/Makefile
> index 5a2cdb1..16ac954 100644
> --- a/src/gallium/targets/xorg-nouveau/Makefile
> +++ b/src/gallium/targets/xorg-nouveau/Makefile
> @@ -1,7 +1,7 @@
>  TOP = ../../../..
>  include $(TOP)/configs/current
>  
> -LIBNAME = modesetting_drv.so
> +LIBNAME = nouveau2_drv.so
>  
>  C_SOURCES = \
>  	nouveau_target.c \
> diff --git a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
> index f0d6492..a25254a 100644
> --- a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
> +++ b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
> @@ -54,7 +54,7 @@ static PciChipsets nouveau_xorg_pci_devices[] = {
>  };
>  
>  static XF86ModuleVersionInfo nouveau_xorg_version = {
> -    "modesetting",
> +    "nouveau2",
>      MODULEVENDORSTRING,
>      MODINFOSTRING1,
>      MODINFOSTRING2,
> @@ -70,9 +70,9 @@ static XF86ModuleVersionInfo nouveau_xorg_version = {
>   * Xorg driver exported structures
>   */
>  
> -_X_EXPORT DriverRec modesetting = {
> +_X_EXPORT DriverRec nouveau2 = {
>      1,
> -    "modesetting",
> +    "nouveau2",
>      nouveau_xorg_identify,
>      NULL,
>      xorg_tracker_available_options,
> @@ -85,7 +85,7 @@ _X_EXPORT DriverRec modesetting = {
>  
>  static MODULESETUPPROTO(nouveau_xorg_setup);
>  
> -_X_EXPORT XF86ModuleData modesettingModuleData = {
> +_X_EXPORT XF86ModuleData nouveau2ModuleData = {
>      &nouveau_xorg_version,
>      nouveau_xorg_setup,
>      NULL
> @@ -104,7 +104,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
>       */
>      if (!setupDone) {
>  	setupDone = 1;
> -	xf86AddDriver(&modesetting, module, HaveDriverFuncs);
> +	xf86AddDriver(&nouveau2, module, HaveDriverFuncs);
>  
>  	/*
>  	 * The return value must be non-NULL on success even though there
> @@ -121,7 +121,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
>  static void
>  nouveau_xorg_identify(int flags)
>  {
> -    xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
> +    xf86PrintChipsets("nouveau2", "Driver for Modesetting Kernel Drivers",
>  		      nouveau_xorg_chipsets);
>  }
>  
> @@ -137,7 +137,7 @@ nouveau_xorg_pci_probe(DriverPtr driver,
>      if (scrn != NULL) {
>  	scrn->driverVersion = 1;
>  	scrn->driverName = "nouveau";
> -	scrn->name = "modesetting";
> +	scrn->name = "nouveau2";
>  	scrn->Probe = NULL;
>  
>  	entity = xf86GetEntityInfo(entity_num);
> -- 

Can someone commit this patch?
 
Marcin

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] xorg/nouveau: rename to nouveau2
  2011-06-19 22:28 ` Marcin Slusarz
@ 2011-06-20  0:39   ` Marek Olšák
       [not found]     ` <BANLkTinA+kEfe-H76HH5gNG0TXUzHahr4w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Marek Olšák @ 2011-06-20  0:39 UTC (permalink / raw)
  To: Marcin Slusarz; +Cc: nouveau, mesa-dev

Pushed, thanks.

The other patch should be pushed by someone who understands it (i.e. not me).

You already have 36 commits in Mesa master. You should really apply
for an account.

Marek

On Mon, Jun 20, 2011 at 12:28 AM, Marcin Slusarz
<marcin.slusarz@gmail.com> wrote:
> On Mon, May 16, 2011 at 09:50:29PM +0200, Marcin Slusarz wrote:
>>
>> ---
>>  src/gallium/targets/xorg-nouveau/Makefile       |    2 +-
>>  src/gallium/targets/xorg-nouveau/nouveau_xorg.c |   14 +++++++-------
>>  2 files changed, 8 insertions(+), 8 deletions(-)
>>
>> diff --git a/src/gallium/targets/xorg-nouveau/Makefile b/src/gallium/targets/xorg-nouveau/Makefile
>> index 5a2cdb1..16ac954 100644
>> --- a/src/gallium/targets/xorg-nouveau/Makefile
>> +++ b/src/gallium/targets/xorg-nouveau/Makefile
>> @@ -1,7 +1,7 @@
>>  TOP = ../../../..
>>  include $(TOP)/configs/current
>>
>> -LIBNAME = modesetting_drv.so
>> +LIBNAME = nouveau2_drv.so
>>
>>  C_SOURCES = \
>>       nouveau_target.c \
>> diff --git a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
>> index f0d6492..a25254a 100644
>> --- a/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
>> +++ b/src/gallium/targets/xorg-nouveau/nouveau_xorg.c
>> @@ -54,7 +54,7 @@ static PciChipsets nouveau_xorg_pci_devices[] = {
>>  };
>>
>>  static XF86ModuleVersionInfo nouveau_xorg_version = {
>> -    "modesetting",
>> +    "nouveau2",
>>      MODULEVENDORSTRING,
>>      MODINFOSTRING1,
>>      MODINFOSTRING2,
>> @@ -70,9 +70,9 @@ static XF86ModuleVersionInfo nouveau_xorg_version = {
>>   * Xorg driver exported structures
>>   */
>>
>> -_X_EXPORT DriverRec modesetting = {
>> +_X_EXPORT DriverRec nouveau2 = {
>>      1,
>> -    "modesetting",
>> +    "nouveau2",
>>      nouveau_xorg_identify,
>>      NULL,
>>      xorg_tracker_available_options,
>> @@ -85,7 +85,7 @@ _X_EXPORT DriverRec modesetting = {
>>
>>  static MODULESETUPPROTO(nouveau_xorg_setup);
>>
>> -_X_EXPORT XF86ModuleData modesettingModuleData = {
>> +_X_EXPORT XF86ModuleData nouveau2ModuleData = {
>>      &nouveau_xorg_version,
>>      nouveau_xorg_setup,
>>      NULL
>> @@ -104,7 +104,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
>>       */
>>      if (!setupDone) {
>>       setupDone = 1;
>> -     xf86AddDriver(&modesetting, module, HaveDriverFuncs);
>> +     xf86AddDriver(&nouveau2, module, HaveDriverFuncs);
>>
>>       /*
>>        * The return value must be non-NULL on success even though there
>> @@ -121,7 +121,7 @@ nouveau_xorg_setup(pointer module, pointer opts, int *errmaj, int *errmin)
>>  static void
>>  nouveau_xorg_identify(int flags)
>>  {
>> -    xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
>> +    xf86PrintChipsets("nouveau2", "Driver for Modesetting Kernel Drivers",
>>                     nouveau_xorg_chipsets);
>>  }
>>
>> @@ -137,7 +137,7 @@ nouveau_xorg_pci_probe(DriverPtr driver,
>>      if (scrn != NULL) {
>>       scrn->driverVersion = 1;
>>       scrn->driverName = "nouveau";
>> -     scrn->name = "modesetting";
>> +     scrn->name = "nouveau2";
>>       scrn->Probe = NULL;
>>
>>       entity = xf86GetEntityInfo(entity_num);
>> --
>
> Can someone commit this patch?
>
> Marcin
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Mesa-dev] [PATCH 1/2] xorg/nouveau: rename to nouveau2
       [not found]     ` <BANLkTinA+kEfe-H76HH5gNG0TXUzHahr4w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-06-20 11:10       ` Marcin Slusarz
  0 siblings, 0 replies; 5+ messages in thread
From: Marcin Slusarz @ 2011-06-20 11:10 UTC (permalink / raw)
  To: Marek Olšák
  Cc: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	mesa-dev-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

On Mon, Jun 20, 2011 at 02:39:39AM +0200, Marek Olšák wrote:
> Pushed, thanks.

Thank you.

> The other patch should be pushed by someone who understands it (i.e. not me).
> 
> You already have 36 commits in Mesa master. You should really apply
> for an account.

Ok, I will apply.

Thanks again.
Marcin
_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-06-20 11:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 19:50 [PATCH 1/2] xorg/nouveau: rename to nouveau2 Marcin Slusarz
2011-06-05 19:06 ` Marcin Slusarz
2011-06-19 22:28 ` Marcin Slusarz
2011-06-20  0:39   ` Marek Olšák
     [not found]     ` <BANLkTinA+kEfe-H76HH5gNG0TXUzHahr4w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-06-20 11:10       ` [Mesa-dev] " Marcin Slusarz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.