public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.4.19-pre10-ac2, compile warnings/failures
@ 2002-06-10 21:23 David Ford
  2002-06-11  0:59 ` Thunder from the hill
  0 siblings, 1 reply; 6+ messages in thread
From: David Ford @ 2002-06-10 21:23 UTC (permalink / raw)
  To: linux-kernel

cpqphp.h: In function `cpq_get_latch_status':
cpqphp.h:698: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
cpqphp.h: In function `wait_for_ctrl_irq':
cpqphp.h:736: warning: concatenation of string literals with 
__FUNCTION__ is deprecated
cpqphp.h:746: warning: concatenation of string literals with 
__FUNCTION__ is deprecated

cpqphp_nvram.c:163: warning: concatenation of string literals with 
__FUNCTION__ is deprecated

cpqphp_nvram.c:179:17: missing terminating " character
cpqphp_nvram.c: In function `access_EV':
cpqphp_nvram.c:180: parse error before "xorl"
cpqphp_nvram.c:184:28: missing terminating " character

People, please don't do things like:

   spin_lock_irqsave(&int15_lock, flags);
   __asm__ (
      "xorl   %%ebx,%%ebx
      xorl    %%edx,%%edx
      pushf
      push    %%cs
      cli
      call    *%6"

Patches keep going in to fix this.

Please do something like:

   spin_lock_irqsave(&int15_lock, flags);
   __asm__ (
      "xorl   %%ebx,%%ebx  \n"
      "xorl    %%edx,%%edx \n"
      "pushf               \n"
      "push    %%cs        \n"
      "cli                 \n"
      "call    *%6         \n"


i2o_core.c:3393:75: missing terminating " character
         printk(KERN_WARNING "i2o: Could not quiesce %s."  "
            Verify setup on next system power up.\n", c->name); 

Please write it like:

         printk(KERN_WARNING "i2o: Could not quiesce %s."  
            "Verify setup on next system power up.\n", c->name);

-d



^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <Pine.LNX.4.21.0206101811180.364-100000@inbetween.blorf.net>]

end of thread, other threads:[~2002-06-11 14:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-10 21:23 2.4.19-pre10-ac2, compile warnings/failures David Ford
2002-06-11  0:59 ` Thunder from the hill
2002-06-11  6:03   ` Greg KH
2002-06-11 14:15     ` David Ford
     [not found] <Pine.LNX.4.21.0206101811180.364-100000@inbetween.blorf.net>
2002-06-11  1:22 ` Thunder from the hill
2002-06-11  3:05   ` David Ford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox