Blame view

include/mtd.h 327 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
d85879938   Thomas Chou   dm: implement a M...
2
3
  /*
   * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
d85879938   Thomas Chou   dm: implement a M...
4
5
6
7
8
9
   */
  
  #ifndef _MTD_H_
  #define _MTD_H_
  
  #include <linux/mtd/mtd.h>
e9f62db64   Miquel Raynal   mtd: uclass: add ...
10
  int mtd_probe(struct udevice *dev);
5db66b3ae   Miquel Raynal   cmd: mtd: add 'mt...
11
  int mtd_probe_devices(void);
e9f62db64   Miquel Raynal   mtd: uclass: add ...
12

683b7c2a1   Patrick Delaunay   mtd: add prototyp...
13
  void board_mtdparts_default(const char **mtdids, const char **mtdparts);
d85879938   Thomas Chou   dm: implement a M...
14
  #endif	/* _MTD_H_ */