summaryrefslogtreecommitdiff
path: root/util/pinmap/chips/register.go
blob: 96b655814e6f6c2c7bf1ed64f76d48f7737a4b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// 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{})
}