Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-06-10 Thread Samuel Pitoiset

Pushed.

On 05/27/2015 01:23 PM, Samuel Pitoiset wrote:



On 05/21/2015 06:40 AM, Dave Airlie wrote:
On 21 May 2015 at 03:26, Samuel Pitoiset samuel.pitoi...@gmail.com 
wrote:


On 05/20/2015 07:13 PM, Ilia Mirkin wrote:

This is obviously a bug, but one that has been there for some time.
Please figure out what this is guarding, and confirm that the feature
continues to work.


Sure, but do you have any ideas how to test this part of the DDX ?
It's the first time I play with it...


It's fine, the code just avoids going into the name checks if the type
isn't a enum,
it won't break anything actually fixing it.

The fix is

Reviewed-by: Dave Airlie airl...@redhat.com


Okay, thanks Dave.


___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-27 Thread Samuel Pitoiset



On 05/21/2015 06:40 AM, Dave Airlie wrote:

On 21 May 2015 at 03:26, Samuel Pitoiset samuel.pitoi...@gmail.com wrote:


On 05/20/2015 07:13 PM, Ilia Mirkin wrote:

This is obviously a bug, but one that has been there for some time.
Please figure out what this is guarding, and confirm that the feature
continues to work.


Sure, but do you have any ideas how to test this part of the DDX ?
It's the first time I play with it...


It's fine, the code just avoids going into the name checks if the type
isn't a enum,
it won't break anything actually fixing it.

The fix is

Reviewed-by: Dave Airlie airl...@redhat.com


Okay, thanks Dave.
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-20 Thread Tobias Klausmann

looks good to me! :)

Feel free to add my R-b.

On 20.05.2015 17:08, Samuel Pitoiset wrote:

This is probably a typo error which has been introduced in 2009...
This fixes the following warning detected by Clang :

drmmode_display.c:907:30: warning: use of logical '' with constant operand 
[-Wconstant-logical-operand]
 if (props  (props-flags  DRM_MODE_PROP_ENUM)) {

Signed-off-by: Samuel Pitoiset samuel.pitoi...@gmail.com
---
  src/drmmode_display.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 7c1d2bb..161bccd 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -904,7 +904,7 @@ drmmode_output_dpms(xf86OutputPtr output, int mode)
  
  	for (i = 0; i  koutput-count_props; i++) {

props = drmModeGetProperty(drmmode-fd, koutput-props[i]);
-   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
+   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
if (!strcmp(props-name, DPMS)) {
mode_id = koutput-props[i];
drmModeFreeProperty(props);


___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-20 Thread Ilia Mirkin
This is obviously a bug, but one that has been there for some time.
Please figure out what this is guarding, and confirm that the feature
continues to work.

On Wed, May 20, 2015 at 1:11 PM, Tobias Klausmann
tobias.johannes.klausm...@mni.thm.de wrote:
 looks good to me! :)

 Feel free to add my R-b.

 On 20.05.2015 17:08, Samuel Pitoiset wrote:

 This is probably a typo error which has been introduced in 2009...
 This fixes the following warning detected by Clang :

 drmmode_display.c:907:30: warning: use of logical '' with constant
 operand [-Wconstant-logical-operand]
  if (props  (props-flags  DRM_MODE_PROP_ENUM)) {

 Signed-off-by: Samuel Pitoiset samuel.pitoi...@gmail.com
 ---
   src/drmmode_display.c | 2 +-
   1 file changed, 1 insertion(+), 1 deletion(-)

 diff --git a/src/drmmode_display.c b/src/drmmode_display.c
 index 7c1d2bb..161bccd 100644
 --- a/src/drmmode_display.c
 +++ b/src/drmmode_display.c
 @@ -904,7 +904,7 @@ drmmode_output_dpms(xf86OutputPtr output, int mode)
 for (i = 0; i  koutput-count_props; i++) {
 props = drmModeGetProperty(drmmode-fd,
 koutput-props[i]);
 -   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
 +   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
 if (!strcmp(props-name, DPMS)) {
 mode_id = koutput-props[i];
 drmModeFreeProperty(props);


 ___
 Nouveau mailing list
 Nouveau@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/nouveau
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-20 Thread Samuel Pitoiset



On 05/20/2015 07:13 PM, Ilia Mirkin wrote:

This is obviously a bug, but one that has been there for some time.
Please figure out what this is guarding, and confirm that the feature
continues to work.


Sure, but do you have any ideas how to test this part of the DDX ?
It's the first time I play with it...



On Wed, May 20, 2015 at 1:11 PM, Tobias Klausmann
tobias.johannes.klausm...@mni.thm.de wrote:

looks good to me! :)

Feel free to add my R-b.

On 20.05.2015 17:08, Samuel Pitoiset wrote:

This is probably a typo error which has been introduced in 2009...
This fixes the following warning detected by Clang :

drmmode_display.c:907:30: warning: use of logical '' with constant
operand [-Wconstant-logical-operand]
  if (props  (props-flags  DRM_MODE_PROP_ENUM)) {

Signed-off-by: Samuel Pitoiset samuel.pitoi...@gmail.com
---
   src/drmmode_display.c | 2 +-
   1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 7c1d2bb..161bccd 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -904,7 +904,7 @@ drmmode_output_dpms(xf86OutputPtr output, int mode)
 for (i = 0; i  koutput-count_props; i++) {
 props = drmModeGetProperty(drmmode-fd,
koutput-props[i]);
-   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
+   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
 if (!strcmp(props-name, DPMS)) {
 mode_id = koutput-props[i];
 drmModeFreeProperty(props);


___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-20 Thread Dave Airlie
On 21 May 2015 at 03:26, Samuel Pitoiset samuel.pitoi...@gmail.com wrote:


 On 05/20/2015 07:13 PM, Ilia Mirkin wrote:

 This is obviously a bug, but one that has been there for some time.
 Please figure out what this is guarding, and confirm that the feature
 continues to work.


 Sure, but do you have any ideas how to test this part of the DDX ?
 It's the first time I play with it...


It's fine, the code just avoids going into the name checks if the type
isn't a enum,
it won't break anything actually fixing it.

The fix is

Reviewed-by: Dave Airlie airl...@redhat.com
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


[Nouveau] [PATCH] fix a wrong use of a logical operator in drmmode_output_dpms()

2015-05-20 Thread Samuel Pitoiset
This is probably a typo error which has been introduced in 2009...
This fixes the following warning detected by Clang :

drmmode_display.c:907:30: warning: use of logical '' with constant operand 
[-Wconstant-logical-operand]
if (props  (props-flags  DRM_MODE_PROP_ENUM)) {

Signed-off-by: Samuel Pitoiset samuel.pitoi...@gmail.com
---
 src/drmmode_display.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 7c1d2bb..161bccd 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -904,7 +904,7 @@ drmmode_output_dpms(xf86OutputPtr output, int mode)
 
for (i = 0; i  koutput-count_props; i++) {
props = drmModeGetProperty(drmmode-fd, koutput-props[i]);
-   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
+   if (props  (props-flags  DRM_MODE_PROP_ENUM)) {
if (!strcmp(props-name, DPMS)) {
mode_id = koutput-props[i];
drmModeFreeProperty(props);
-- 
2.4.1

___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau