Changeset 318 for GPL


Ignore:
Timestamp:
Mar 24, 2008, 11:48:38 PM (17 years ago)
Author:
Paul Smedley
Message:

Fix more compiler warnings (Again) + fix Copyright years

Location:
GPL/branches/uniaud-2.0
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud-2.0/alsa-kernel/core/control.c

    r305 r318  
    14021402 */
    14031403
     1404#ifndef TARGET_OS2
    14041405static const struct file_operations snd_ctl_f_ops =
     1406#else
     1407static struct file_operations snd_ctl_f_ops =
     1408#endif
    14051409{
    14061410#ifndef TARGET_OS2
  • GPL/branches/uniaud-2.0/alsa-kernel/core/init.c

    r305 r318  
    4343static LIST_HEAD(shutdown_files);
    4444
     45#ifndef TARGET_OS2
    4546static const struct file_operations snd_shutdown_f_ops;
     47#else
     48static struct file_operations snd_shutdown_f_ops;
     49#endif
    4650
    4751static unsigned int snd_cards_lock;     /* locked for registering/using */
     
    300304}
    301305
     306#ifndef TARGET_OS2
    302307static const struct file_operations snd_shutdown_f_ops =
     308#else
     309static struct file_operations snd_shutdown_f_ops =
     310#endif
    303311{
    304312#ifndef TARGET_OS2
  • GPL/branches/uniaud-2.0/alsa-kernel/core/rawmidi.c

    r305 r318  
    13761376 */
    13771377
     1378#ifndef TARGET_OS2
    13781379static const struct file_operations snd_rawmidi_f_ops =
     1380#else
     1381static struct file_operations snd_rawmidi_f_ops =
     1382#endif
    13791383{
    13801384#ifndef TARGET_OS2
  • GPL/branches/uniaud-2.0/alsa-kernel/core/seq/seq_clientmgr.c

    r305 r318  
    25552555 */
    25562556
     2557#ifndef TARGET_OS2
    25572558static const struct file_operations snd_seq_f_ops =
     2559#else
     2560static struct file_operations snd_seq_f_ops =
     2561#endif
    25582562{
    25592563#ifndef TARGET_OS2
  • GPL/branches/uniaud-2.0/drv32/init.c

    r305 r318  
    5050const char szALSA[]      = "\r\n"PRODUCT_NAME" v"UNIAUD_VERSION"\r\nBased on ALSA "ALSA_VERSION"\r\n";
    5151
    52 const char szCopyRight1[]= "Copyright 2000-2002 InnoTek Systemberatung GmbH\r\n";
    53 const char szCopyRight2[]= "Copyright 2000-2007 The ALSA Project\r\n\r\n";
    54 const char szCopyRight3[]= "Copyright 2005-2007 Netlabs http://www.netlabs.org\r\n";
     52//const char szCopyRight1[]= "Copyright 2000-2002 InnoTek Systemberatung GmbH\r\n";
     53const char szCopyRight2[]= "Copyright 2000-2008 The ALSA Project\r\n\r\n";
     54const char szCopyRight3[]= "Copyright 2005-2008 Netlabs http://www.netlabs.org\r\n";
    5555//const char szCopyRight3[]= "Maintained by http://os2.kiev.ua/en/uniaud.php\r\n\r\n";
    5656
Note: See TracChangeset for help on using the changeset viewer.