summaryrefslogtreecommitdiff
path: root/util/pinmap/chips/register.go
blob: ff6d0471407f931ff0954f8d7ff61bc629c0b4a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package chips

import (
	"pinmap/pm"
)

// init registers the chips.
func init() {
	pm.RegisterChip(&It81302{})
	pm.RegisterChip(&Npcx993{})
}