1//
2//  AppleS5L8930XIO.h
3//  AppleS5L8930XDevice
4//
5//  Created by rms on 5/23/13.
6//  Copyright (c) 2013 rms. All rights reserved.
7//
8
9#ifndef __AppleS5L8930XDevice__AppleS5L8930XIO__
10#define __AppleS5L8930XDevice__AppleS5L8930XIO__
11
12#include <mach/mach_types.h>
13#include <IOKit/IOService.h>
14#include <IOKit/IOLib.h>
15#include "AppleARMIO.h"
16
17class AppleARMIO:public ARMIO {
18    OSDeclareDefaultStructors(AppleARMIO);
19 public:
20    bool init(OSDictionary * propTable);
21    IOService *probe(IOService * provider, SInt32 * score);
22    bool start(IOService * provider);
23};
24
25#endif                          /* defined(__AppleS5L8930XDevice__AppleS5L8930XIO__) */
26