2 * ATSTK1000 SPI devices
4 * Copyright (C) 2005 Atmel Norway
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/device.h>
11 #include <linux/spi/spi.h>
13 static struct spi_board_info spi_board_info[] __initdata = {
15 .modalias = "ltv350qv",
16 .max_speed_hz = 16000000,
22 static int board_init_spi(void)
24 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
27 arch_initcall(board_init_spi);