root/arch/x86/platform/intel-mid/device_libs/platform_bma023.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0-only
   2 /*
   3  * platform_bma023.c: bma023 platform data initialization file
   4  *
   5  * (C) Copyright 2013 Intel Corporation
   6  */
   7 
   8 #include <asm/intel-mid.h>
   9 
  10 static const struct devs_id bma023_dev_id __initconst = {
  11         .name = "bma023",
  12         .type = SFI_DEV_TYPE_I2C,
  13         .delay = 1,
  14 };
  15 
  16 sfi_device(bma023_dev_id);

/* [<][>][^][v][top][bottom][index][help] */