Formatting fixes
authorNathan Binkert <binkertn@umich.edu>
Thu, 24 Mar 2005 03:58:47 +0000 (22:58 -0500)
committerNathan Binkert <binkertn@umich.edu>
Thu, 24 Mar 2005 03:58:47 +0000 (22:58 -0500)
--HG--
extra : convert_revision : 9a726945b7a1decbecf460df6714257b88742dc8

dev/tsunami.cc
python/m5/config.py

index a95b7365d79df80bd56b4439e32886bc06812b15..c84dde9bcbdffaf199facd6fb2ab6ddc84a55efb 100644 (file)
@@ -77,13 +77,13 @@ Tsunami::clearConsoleInt()
 void
 Tsunami::postPciInt(int line)
 {
-   cchip->postDRIR(line);
+    cchip->postDRIR(line);
 }
 
 void
 Tsunami::clearPciInt(int line)
 {
-   cchip->clearDRIR(line);
+    cchip->clearDRIR(line);
 }
 
 Addr
index 3fc90f6bc0ee7bd68a6141892096ba69529ffbf5..e097173f3a0c037fc488cf26a47666c5f3a0d0f8 100644 (file)
@@ -740,8 +740,6 @@ class Node(object):
 
     # print type and parameter values to .ini file
     def outputDot(self, dot):
-
-
         label = "{%s|" % self.path
         if isSimObject(self.realtype):
             label +=  '%s|' % self.type
@@ -931,7 +929,6 @@ class ParamFactory(object):
                   'Attribute %s not available in %s' % (attr, self.__class__)
         super(ParamFactory, self).__setattr__(attr, value)
 
-
 Param = ParamFactory(None)
 
 # Vector-valued parameter description.  Just like Param, except that
@@ -1198,7 +1195,6 @@ class String(ParamType):
         return value
     _string = classmethod(_string)
 
-
 def IncEthernetAddr(addr, val = 1):
     bytes = map(lambda x: int(x, 16), addr.split(':'))
     bytes[5] += val
@@ -1294,7 +1290,6 @@ Null = NULL = NullSimObject()
 
 # Metaclass for Enum types
 class MetaEnum(type):
-
     def __init__(cls, name, bases, init_dict):
         if init_dict.has_key('map'):
             if not isinstance(cls.map, dict):