From: Jon Mason Date: Sat, 19 Jan 2013 09:02:23 +0000 (-0700) Subject: NTB: namespacecheck cleanups X-Git-Tag: v3.12-rc1~1403^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=170d35a57cf2c87bbfdfe6ec0485f678bdb53737;p=kernel%2Fkernel-generic.git NTB: namespacecheck cleanups Declare ntb_bus_type static to remove it from name space, and remove unused ntb_get_max_spads function. Found via `make namespacecheck`. Signed-off-by: Jon Mason Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/ntb/ntb_hw.c b/drivers/ntb/ntb_hw.c index 4c71b17..7d087bb 100644 --- a/drivers/ntb/ntb_hw.c +++ b/drivers/ntb/ntb_hw.c @@ -237,20 +237,6 @@ void ntb_unregister_transport(struct ntb_device *ndev) } /** - * ntb_get_max_spads() - get the total scratch regs usable - * @ndev: pointer to ntb_device instance - * - * This function returns the max 32bit scratchpad registers usable by the - * upper layer. - * - * RETURNS: total number of scratch pad registers available - */ -int ntb_get_max_spads(struct ntb_device *ndev) -{ - return ndev->limits.max_spads; -} - -/** * ntb_write_local_spad() - write to the secondary scratchpad register * @ndev: pointer to ntb_device instance * @idx: index to the scratchpad register, 0 based diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c index c0eca02..903a72e 100644 --- a/drivers/ntb/ntb_transport.c +++ b/drivers/ntb/ntb_transport.c @@ -212,7 +212,7 @@ static int ntb_client_remove(struct device *dev) return 0; } -struct bus_type ntb_bus_type = { +static struct bus_type ntb_bus_type = { .name = "ntb_bus", .match = ntb_match_bus, .probe = ntb_client_probe,