Changeset 5182


Ignore:
Timestamp:
Mar 1, 2010 6:19:55 PM (3 years ago)
Author:
uwe
Message:

Various cometic and coding-style fixes (trivial).

  • Fix whitespace, alignment, and indentation in a few places.
  • Some more consistency fixes in license headers.
  • Fix incomplete license header: src/mainboard/msi/ms9652_fam10/devicetree.cb.
  • Fix typo for LIMIT_HT_SPEED_1800: s/1.6GHz/1.8GHz/.
  • Fix typo in src/mainboard/msi/ms9652_fam10/Kconfig: s/MS-9256/MS-9252/.

Signed-off-by: Uwe Hermann <uwe@…>
Acked-by: Uwe Hermann <uwe@…>

Location:
trunk/src
Files:
22 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Kconfig

    r5179 r5182  
    5858comment "Northbridge" 
    5959 
    60 menu "HyperTransport Setup" 
     60menu "HyperTransport setup" 
    6161        depends on (NORTHBRIDGE_AMD_AMDK8 || NORTHBRIDGE_AMD_AMDFAM10) && EXPERT 
    6262 
    6363choice 
    64         prompt "HyperTransport Frequency" 
     64        prompt "HyperTransport frequency" 
    6565        default LIMIT_HT_SPEED_AUTO 
    6666        help 
    67           This option sets the maximum permissible HyperTransport link frequency. 
    68           Use of this option will only limit the autodetected HT frequency; it will not (and cannot) increase the frequency beyond the autodetected limits. 
    69           This is primarily used to work around poorly designed or laid out HT traces on certain motherboards. 
     67          This option sets the maximum permissible HyperTransport link 
     68          frequency. 
     69 
     70          Use of this option will only limit the autodetected HT frequency. 
     71          It will not (and cannot) increase the frequency beyond the 
     72          autodetected limits. 
     73 
     74          This is primarily used to work around poorly designed or laid out 
     75          HT traces on certain motherboards. 
    7076 
    7177config LIMIT_HT_SPEED_200 
     
    8692        bool "Limit HT frequency to 1.6GHz" 
    8793config LIMIT_HT_SPEED_1800 
    88         bool "Limit HT frequency to 1.6GHz" 
     94        bool "Limit HT frequency to 1.8GHz" 
    8995config LIMIT_HT_SPEED_2000 
    90         bool "Limit HT frequency to 2.0GHz" 
     96        bool "Limit HT frequency to 2.0GHz" 
    9197config LIMIT_HT_SPEED_2200 
    92         bool "Limit HT frequency to 2.2GHz" 
     98        bool "Limit HT frequency to 2.2GHz" 
    9399config LIMIT_HT_SPEED_2400 
    94         bool "Limit HT frequency to 2.4GHz" 
     100        bool "Limit HT frequency to 2.4GHz" 
    95101config LIMIT_HT_SPEED_2600 
    96         bool "Limit HT frequency to 2.6GHz" 
     102        bool "Limit HT frequency to 2.6GHz" 
    97103config LIMIT_HT_SPEED_AUTO 
    98104        bool "Autodetect HT frequency" 
     
    100106 
    101107choice 
    102         prompt "HyperTransport Downlink Width" 
     108        prompt "HyperTransport downlink width" 
    103109        default LIMIT_HT_DOWN_WIDTH_16 
    104110        help 
    105           This option sets the maximum permissible HyperTransport link width. 
    106           Use of this option will only limit the autodetected HT width; it will not (and cannot) increase the width beyond the autodetected limits. 
    107           This is primarily used to work around poorly designed or laid out HT traces on certain motherboards. 
     111          This option sets the maximum permissible HyperTransport 
     112          downlink width. 
     113 
     114          Use of this option will only limit the autodetected HT width. 
     115          It will not (and cannot) increase the width beyond the autodetected 
     116          limits. 
     117 
     118          This is primarily used to work around poorly designed or laid out HT 
     119          traces on certain motherboards. 
    108120 
    109121config LIMIT_HT_DOWN_WIDTH_8 
     
    114126 
    115127choice 
    116         prompt "HyperTransport Uplink Width" 
     128        prompt "HyperTransport uplink width" 
    117129        default LIMIT_HT_UP_WIDTH_16 
    118130        help 
    119           This option sets the maximum permissible HyperTransport link width. 
    120           Use of this option will only limit the autodetected HT width; it will not (and cannot) increase the width beyond the autodetected limits. 
    121           This is primarily used to work around poorly designed or laid out HT traces on certain motherboards. 
     131          This option sets the maximum permissible HyperTransport 
     132          uplink width. 
     133 
     134          Use of this option will only limit the autodetected HT width. 
     135          It will not (and cannot) increase the width beyond the autodetected 
     136          limits. 
     137 
     138          This is primarily used to work around poorly designed or laid out HT 
     139          traces on certain motherboards. 
    122140 
    123141config LIMIT_HT_UP_WIDTH_8 
  • trunk/src/include/assert.h

    r5170 r5182  
    11/* 
    22 * This file is part of the coreboot project. 
    3  *  
     3 * 
    44 * Copyright (C) 2010 coresystems GmbH 
    55 * 
    66 * This program is free software; you can redistribute it and/or 
    77 * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     8 * published by the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
     
    6361 
    6462#endif 
    65                                          
    66 #endif  // __ASSERT_H__ 
     63 
     64#endif // __ASSERT_H__ 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/ec.asl

    r3999 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/i945_pci_irqs.asl

    r4458 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/ich7_pci_irqs.asl

    r4458 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/platform.asl

    r3999 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/superio.asl

    r4861 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/thermal.asl

    r3999 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi/video.asl

    r3999 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/acpi_tables.c

    r5136 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/cmos.layout

    r4861 r5182  
    1 # 
    2 # This file is part of the coreboot project. 
    3 #  
    4 # Copyright (C) 2007-2008 coresystems GmbH 
    5 # 
    6 # This program is free software; you can redistribute it and/or 
    7 # modify it under the terms of the GNU General Public License as 
    8 # published by the Free Software Foundation; version 2 of 
    9 # the License. 
    10 # 
    11 # This program is distributed in the hope that it will be useful, 
    12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    14 # GNU General Public License for more details. 
    15 # 
    16 # You should have received a copy of the GNU General Public License 
    17 # along with this program; if not, write to the Free Software 
    18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19 # MA 02110-1301 USA 
    20 # 
     1## 
     2## This file is part of the coreboot project. 
     3## 
     4## Copyright (C) 2007-2008 coresystems GmbH 
     5## 
     6## This program is free software; you can redistribute it and/or modify 
     7## it under the terms of the GNU General Public License as published by 
     8## the Free Software Foundation; version 2 of the License. 
     9## 
     10## This program is distributed in the hope that it will be useful, 
     11## but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13## GNU General Public License for more details. 
     14## 
     15## You should have received a copy of the GNU General Public License 
     16## along with this program; if not, write to the Free Software 
     17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
     18## 
    2119 
    2220# ----------------------------------------------------------------- 
  • trunk/src/mainboard/kontron/986lcd-m/dsdt.asl

    r4861 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/fadt.c

    r4861 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/irq_tables.c

    r4739 r5182  
    44 * Copyright (C) 2007-2008 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/mainboard.c

    r5136 r5182  
    44 * Copyright (C) 2007-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/mainboard_smi.c

    r4458 r5182  
    44 * Copyright (C) 2008-2009 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/mptable.c

    r5136 r5182  
    44 * Copyright (C) 2007-2008 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/kontron/986lcd-m/romstage.c

    r5136 r5182  
    44 * Copyright (C) 2007-2010 coresystems GmbH 
    55 * 
    6  * This program is free software; you can redistribute it and/or 
    7  * modify it under the terms of the GNU General Public License as 
    8  * published by the Free Software Foundation; version 2 of 
    9  * the License. 
     6 * This program is free software; you can redistribute it and/or modify 
     7 * it under the terms of the GNU General Public License as published by 
     8 * the Free Software Foundation; version 2 of the License. 
    109 * 
    1110 * This program is distributed in the hope that it will be useful, 
     
    1615 * You should have received a copy of the GNU General Public License 
    1716 * along with this program; if not, write to the Free Software 
    18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 
    19  * MA 02110-1301 USA 
     17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 
    2018 */ 
    2119 
  • trunk/src/mainboard/msi/ms9652_fam10/Kconfig

    r5180 r5182  
    11config BOARD_MSI_MS9652_FAM10 
    2         bool "MS9652 Fam10 (Speedster K9ND)" 
     2        bool "MS-9652 Fam10 (Speedster K9ND)" 
    33        select ARCH_X86 
    44        select CPU_AMD_SOCKET_F_1207 
     
    135135config MAINBOARD_PART_NUMBER 
    136136        string 
    137         default "MS-9256" 
     137        default "MS-9252" 
    138138        depends on BOARD_MSI_MS9652_FAM10 
    139139 
  • trunk/src/mainboard/msi/ms9652_fam10/acpi_tables.c

    r5180 r5182  
    1111 * 
    1212 * This program is free software; you can redistribute it and/or modify 
    13  * it under the terms of the GNU General Public License v2 as published by 
    14  * the Free Software Foundation. 
     13 * it under the terms of the GNU General Public License as published by 
     14 * the Free Software Foundation; version 2 of the License. 
    1515 * 
    1616 * This program is distributed in the hope that it will be useful, 
  • trunk/src/mainboard/msi/ms9652_fam10/devicetree.cb

    r5180 r5182  
     1## 
     2## This file is part of the coreboot project. 
     3## 
     4## Copyright (C) 2007 AMD 
     5## Written by Yinghai Lu <yinghailu@amd.com> for AMD. 
    16## Copyright (C) 2010 Raptor Engineering 
    27## Written by Timothy Pearson <tpearson@raptorengineeringinc.com> for Raptor Engineering. 
    38## 
    4 ## Copyright (C) 2007 AMD 
    5 ## Written by Yinghai Lu <yinghailu@amd.com> for AMD. 
     9## This program is free software; you can redistribute it and/or modify 
     10## it under the terms of the GNU General Public License as published by 
     11## the Free Software Foundation; either version 2 of the License, or 
     12## (at your option) any later version. 
     13## 
     14## This program is distributed in the hope that it will be useful, 
     15## but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17## GNU General Public License for more details. 
     18## 
     19## You should have received a copy of the GNU General Public License 
     20## along with this program; if not, write to the Free Software 
     21## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA 
     22## 
    623 
    724chip northbridge/amd/amdfam10/root_complex 
  • trunk/src/mainboard/msi/ms9652_fam10/dsdt.asl

    r5180 r5182  
    22 * This file is part of the coreboot project. 
    33 * 
    4  * (C) Copyright 2004 Nick Barker <Nick.Barker9@btinternet.com> 
    5  * (C) Copyright 2007, 2008 Rudolf Marek <r.marek@assembler.cz> 
    6  * (C) Copyright 2009 Harald Gutmann <harald.gutmann@gmx.net> 
     4 * Copyright (C) 2004 Nick Barker <Nick.Barker9@btinternet.com> 
     5 * Copyright (C) 2007, 2008 Rudolf Marek <r.marek@assembler.cz> 
     6 * Copyright (C) 2009 Harald Gutmann <harald.gutmann@gmx.net> 
    77 * 
    88 * ISA portions taken from QEMU acpi-dsdt.dsl. 
    99 * 
    1010 * This program is free software; you can redistribute it and/or modify 
    11  * it under the terms of the GNU General Public License v2 as published by 
    12  * the Free Software Foundation. 
     11 * it under the terms of the GNU General Public License as published by 
     12 * the Free Software Foundation; version 2 of the License. 
    1313 * 
    1414 * This program is distributed in the hope that it will be useful, 
Note: See TracChangeset for help on using the changeset viewer.