blob: 3062963759190b9bd14bb378f940857eeb6b3f6b [file] [log] [blame]
// Copyright 2018 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.
#ifndef CHROMEOS_CONFIG_EC_CONFIG_H_
#define CHROMEOS_CONFIG_EC_CONFIG_H_
#include <stdint.h>
#include <stdlib.h>
struct sku_info {
const uint8_t sku;
{%- for flag in flags %}
const uint8_t {{ flag }} :1;
{%- endfor %}
};
extern const size_t NUM_SKUS;
extern const struct sku_info ALL_SKUS[];
#endif // CHROMEOS_CONFIG_EC_CONFIG_H_