util/intelp2m: Move fields pakage to common

According to the architecture, this is part of the common block.
TEST: 'make test' = PASS

Change-Id: I6390182ab00d9ebd787e8da6f341e3ef85572991
Signed-off-by: Maxim Polyakov <max.senia.poliak@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71235
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Maxim Polyakov 2024-12-23 19:34:15 +03:00 committed by Felix Singer
commit 9e50202e4c
10 changed files with 9 additions and 9 deletions

View file

@ -7,11 +7,11 @@ import (
"strings"
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields"
"review.coreboot.org/coreboot.git/util/intelp2m/logs"
"review.coreboot.org/coreboot.git/util/intelp2m/parser/template"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/register/bits"
)

View file

@ -4,7 +4,7 @@ import (
"testing"
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/test"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/test"
)
// sliding-one

View file

@ -2,10 +2,10 @@ package fields
import (
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/cb"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/fsp"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/raw"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/cb"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/fsp"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/raw"
)
// InterfaceSet - set the interface for decoding configuration

View file

@ -4,7 +4,7 @@ import (
"testing"
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/test"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/test"
)
func TestFSPFields(t *testing.T) {

View file

@ -4,7 +4,7 @@ import (
"testing"
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields/test"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields/test"
)
func TestRAWFields(t *testing.T) {

View file

@ -4,9 +4,9 @@ import (
"fmt"
"testing"
"review.coreboot.org/coreboot.git/util/intelp2m/fields"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields"
)
type TestCase struct {

View file

@ -5,9 +5,9 @@ import (
"testing"
"review.coreboot.org/coreboot.git/util/intelp2m/config/p2m"
"review.coreboot.org/coreboot.git/util/intelp2m/fields"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common"
"review.coreboot.org/coreboot.git/util/intelp2m/platforms/common/fields"
)
type (