dm: platform_data: spi: s/pl022_spi.h/spi_pl022.h

Rename platform_data include file as spi_pl022.h from pl022_spi.h,
this is generic notation used for spi platdata include files.

Acked-by: Quentin Schulz <quentin.schulz@bootlin.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
Jagan Teki 2018-11-22 11:54:08 +05:30
parent e6f76d555e
commit 3ae6030cf9
2 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
#include <clk.h>
#include <common.h>
#include <dm.h>
#include <dm/platform_data/pl022_spi.h>
#include <dm/platform_data/spi_pl022.h>
#include <linux/io.h>
#include <spi.h>

View file

@ -7,8 +7,8 @@
* in ofdata_to_platdata.
*/
#ifndef __PL022_SPI_H__
#define __PL022_SPI_H__
#ifndef __spi_pl022_h
#define __spi_pl022_h
#include <fdtdec.h>
@ -18,4 +18,4 @@ struct pl022_spi_pdata {
unsigned int freq;
};
#endif
#endif /* __spi_pl022_h */