27 lines
645 B
C
27 lines
645 B
C
|
/*
|
||
|
* Copyright (c) 2015 Linaro Ltd.
|
||
|
* Copyright (c) 2015 Hisilicon Limited.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _HISI_SAS_H_
|
||
|
#define _HISI_SAS_H_
|
||
|
|
||
|
#include <linux/dmapool.h>
|
||
|
#include <linux/mfd/syscon.h>
|
||
|
#include <linux/module.h>
|
||
|
#include <linux/of_address.h>
|
||
|
#include <linux/of_irq.h>
|
||
|
#include <linux/platform_device.h>
|
||
|
#include <linux/regmap.h>
|
||
|
#include <scsi/libsas.h>
|
||
|
|
||
|
#define DRV_VERSION "v1.0"
|
||
|
|
||
|
#endif
|