libnvdimm: Cleanup include of badblocks.h
authorEnrico Weigelt <info@metux.net>
Tue, 15 Dec 2020 16:35:31 +0000 (17:35 +0100)
committerDan Williams <dan.j.williams@intel.com>
Wed, 16 Dec 2020 05:47:45 +0000 (21:47 -0800)
commit5ae96d779ff3eeb2977919ff311a6c8849943c2d
tree02b49934c388664bd97bab1f47261fe728bdaaf9
parent9a7e3d7f056831a6193d6d737fb7a26dfdceb04b
libnvdimm: Cleanup include of badblocks.h

* drivers/nvdimm/core.c doesn't use anything from badblocks.h on its own,
  thus including it isn't needed. There's indeed indirect use, via funcs
  in nd.h, but this one already includes badblocks.h.

* drivers/nvdimm/claim.c calls stuff from badblocks.h and therefore should
  include it on its own (instead of relying any other header doing that)

* drivers/nvdimm/btt.h doesn't really need anything from badblocks.h and
  can easily live with a forward declaration of struct badblocks (just
  having pointers to it, but not dereferencing it anywhere)

Signed-off-by: Enrico Weigelt <info@metux.net>
Link: https://lore.kernel.org/r/20201215163531.21446-1-info@metux.net
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/btt.h
drivers/nvdimm/claim.c
drivers/nvdimm/core.c