1/* Header file for cc2520 radio driver
2 *
3 * Copyright (C) 2014 Varka Bhadram <varkab@cdac.in>
4 *                    Md.Jamal Mohiuddin <mjmohiuddin@cdac.in>
5 *                    P Sowjanya <sowjanyap@cdac.in>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 */
13
14#ifndef __CC2520_H
15#define __CC2520_H
16
17struct cc2520_platform_data {
18	int fifo;
19	int fifop;
20	int cca;
21	int sfd;
22	int reset;
23	int vreg;
24	bool amplified;
25};
26
27#endif
28