da9052-spi.c (f9cd49033b349b8be3bb1f01b39eed837853d880) da9052-spi.c (84449216b01f9c2b4c9b1882f9d6abba07b7b7ca)
1/*
2 * SPI access for Dialog DA9052 PMICs.
3 *
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
5 *
6 * Author: David Dajun Chen <dchen@diasemi.com>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 62 unchanged lines hidden (view full) ---

71 {"da9053-aa", DA9053_AA},
72 {"da9053-ba", DA9053_BA},
73 {"da9053-bb", DA9053_BB},
74 {}
75};
76
77static struct spi_driver da9052_spi_driver = {
78 .probe = da9052_spi_probe,
1/*
2 * SPI access for Dialog DA9052 PMICs.
3 *
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
5 *
6 * Author: David Dajun Chen <dchen@diasemi.com>
7 *
8 * This program is free software; you can redistribute it and/or modify

--- 62 unchanged lines hidden (view full) ---

71 {"da9053-aa", DA9053_AA},
72 {"da9053-ba", DA9053_BA},
73 {"da9053-bb", DA9053_BB},
74 {}
75};
76
77static struct spi_driver da9052_spi_driver = {
78 .probe = da9052_spi_probe,
79 .remove = __devexit_p(da9052_spi_remove),
79 .remove = da9052_spi_remove,
80 .id_table = da9052_spi_id,
81 .driver = {
82 .name = "da9052",
83 .owner = THIS_MODULE,
84 },
85};
86
87static int __init da9052_spi_init(void)

--- 22 unchanged lines hidden ---
80 .id_table = da9052_spi_id,
81 .driver = {
82 .name = "da9052",
83 .owner = THIS_MODULE,
84 },
85};
86
87static int __init da9052_spi_init(void)

--- 22 unchanged lines hidden ---