1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #1198 from jordimassaguerpla/add_s390x

add s390x arch build info at the netlink_deprecated_linux bridge driver
This commit is contained in:
Alessandro Boch 2016-09-02 22:54:48 +02:00 committed by GitHub
commit f88765e4e6
2 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,4 @@
// +build !arm,!ppc64,!ppc64le
// +build !arm,!ppc64,!ppc64le,!s390x
package bridge

View file

@ -0,0 +1,7 @@
// +build s390x
package bridge
func ifrDataByte(b byte) uint8 {
return uint8(b)
}