summaryrefslogtreecommitdiff
path: root/os/drivers/include/device.h
blob: ee3a675d41d762d747a8dfd6ebc82cb8da6ece4a (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __DEVICE_H__
#define __DEVICE_H__

struct device {
  void *devptr;
  volatile void *data;
  void *config;
};

#endif/*__DEVICE_H__*/