Subversion Repositories Kolibri OS

Rev

Rev 1498 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 7... Line 7...
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
16
 * 2.1. This is your license from Intel Corp. under its intellectual property
Line 114... Line 114...
114
 *****************************************************************************/
114
 *****************************************************************************/
115
 
115
 
Line 116... Line 116...
116
 
116
 
117
#include "aslcompiler.h"
-
 
Line 118... Line 117...
118
#include "aslcompiler.y.h"
117
#include "aslcompiler.h"
119
 
118
 
Line 120... Line 119...
120
#define _COMPONENT          ACPI_COMPILER
119
#define _COMPONENT          ACPI_COMPILER
Line 293... Line 292...
293
        Descriptor->ExtAddress64.Maximum,
292
        Descriptor->ExtAddress64.Maximum,
294
        Descriptor->ExtAddress64.AddressLength,
293
        Descriptor->ExtAddress64.AddressLength,
295
        Descriptor->ExtAddress64.Granularity,
294
        Descriptor->ExtAddress64.Granularity,
296
        Descriptor->ExtAddress64.Flags,
295
        Descriptor->ExtAddress64.Flags,
297
        MinOp, MaxOp, LengthOp, GranOp);
296
        MinOp, MaxOp, LengthOp, GranOp, Op);
298
 
297
 
Line 299... Line 298...
299
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
298
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
300
    return (Rnode);
299
    return (Rnode);
301
}
300
}
Line 474... Line 473...
474
        Descriptor->ExtAddress64.Maximum,
473
        Descriptor->ExtAddress64.Maximum,
475
        Descriptor->ExtAddress64.AddressLength,
474
        Descriptor->ExtAddress64.AddressLength,
476
        Descriptor->ExtAddress64.Granularity,
475
        Descriptor->ExtAddress64.Granularity,
477
        Descriptor->ExtAddress64.Flags,
476
        Descriptor->ExtAddress64.Flags,
478
        MinOp, MaxOp, LengthOp, GranOp);
477
        MinOp, MaxOp, LengthOp, GranOp, Op);
479
 
478
 
Line 480... Line 479...
480
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
479
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
481
    return (Rnode);
480
    return (Rnode);
482
}
481
}
Line 637... Line 636...
637
        Descriptor->ExtAddress64.Maximum,
636
        Descriptor->ExtAddress64.Maximum,
638
        Descriptor->ExtAddress64.AddressLength,
637
        Descriptor->ExtAddress64.AddressLength,
639
        Descriptor->ExtAddress64.Granularity,
638
        Descriptor->ExtAddress64.Granularity,
640
        Descriptor->ExtAddress64.Flags,
639
        Descriptor->ExtAddress64.Flags,
641
        MinOp, MaxOp, LengthOp, GranOp);
640
        MinOp, MaxOp, LengthOp, GranOp, Op);
642
 
641
 
Line 643... Line 642...
643
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
642
    Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
644
    return (Rnode);
643
    return (Rnode);
645
}
644
}