1// Copyright 2018 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5library fuchsia.hardware.block;
6
7using zx;
8
9[Layout = "Simple"]
10interface Ftl {
11    // Discards previous contents and reinitializes the device.
12    1: Format() -> (zx.status status);
13};
14