All of lore.kernel.org
 help / color / mirror / Atom feed
* [drivers/misc/thinkpad_acpi.c] duplicate test if (level & TP_EC_FAN_FULLSPEED)
@ 2008-02-04 22:07 Roel Kluin
  2008-02-04 22:13 ` Roland Dreier
  0 siblings, 1 reply; 13+ messages in thread
From: Roel Kluin @ 2008-02-04 22:07 UTC (permalink / raw)
  To: len.brown, ibm-acpi; +Cc: ibm-acpi-devel, linux-acpi, lkml

in drivers/misc/thinkpad_acpi.c: 4137-4142 it reads:

                /* safety net should the EC not support AUTO
                 * or FULLSPEED mode bits and just ignore them */
                if (level & TP_EC_FAN_FULLSPEED)
                        level |= 7;     /* safety min speed 7 */
                else if (level & TP_EC_FAN_FULLSPEED)
                        level |= 4;     /* safety min speed 4 */

Note the duplicate test 'if (level & TP_EC_FAN_FULLSPEED)'. should
this be replaced by

                if (level & TP_EC_FAN_FULLSPEED)
                        level |= 7;     /* safety min speed 7 */
                else
                        level |= 4;     /* safety min speed 4 */

or 

                if (level & TP_EC_FAN_FULLSPEED)
                        level |= 7;     /* safety min speed 7 */
                if (level & TP_EC_FAN_FULLSPEED)
                        level |= 4;     /* safety min speed 4 */

?

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

end of thread, other threads:[~2008-02-07  7:25 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-04 22:07 [drivers/misc/thinkpad_acpi.c] duplicate test if (level & TP_EC_FAN_FULLSPEED) Roel Kluin
2008-02-04 22:13 ` Roland Dreier
2008-02-04 23:24   ` [PATCH][drivers/misc/thinkpad_acpi.c] " Roel Kluin
     [not found]     ` <47A79EC8.6060700-IWqWACnzNjzz+pZb47iToQ@public.gmane.org>
2008-02-05  5:05       ` Henrique de Moraes Holschuh
2008-02-05  5:05         ` Henrique de Moraes Holschuh
2008-02-05  8:34         ` Roel Kluin
2008-02-06 23:07           ` Greg KH
2008-02-06 23:48             ` Roel Kluin
2008-02-07  1:18               ` Henrique de Moraes Holschuh
2008-02-07  7:28                 ` [stable] " Greg KH
2008-02-07  5:55               ` Greg KH
2008-02-07  6:17       ` Len Brown
2008-02-07  6:17         ` Len Brown

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.