Commit a3d9ad47 authored by Peter Hurley's avatar Peter Hurley Committed by Greg Kroah-Hartman

staging/fwserial: Fix sparse build warnings

Reported-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: default avatarPeter Hurley <peter@hurleysoftware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c88d40b2
...@@ -78,6 +78,8 @@ static int num_ports; ...@@ -78,6 +78,8 @@ static int num_ports;
/* slab used as pool for struct fwtty_transactions */ /* slab used as pool for struct fwtty_transactions */
static struct kmem_cache *fwtty_txn_cache; static struct kmem_cache *fwtty_txn_cache;
struct tty_driver *fwtty_driver;
struct fwtty_transaction; struct fwtty_transaction;
typedef void (*fwtty_transaction_cb)(struct fw_card *card, int rcode, typedef void (*fwtty_transaction_cb)(struct fw_card *card, int rcode,
void *data, size_t length, void *data, size_t length,
...@@ -2552,7 +2554,7 @@ static struct fw_descriptor fwserial_unit_directory = { ...@@ -2552,7 +2554,7 @@ static struct fw_descriptor fwserial_unit_directory = {
* The management address is in the unit space region but above other known * The management address is in the unit space region but above other known
* address users (to keep wild writes from causing havoc) * address users (to keep wild writes from causing havoc)
*/ */
const struct fw_address_region fwserial_mgmt_addr_region = { static const struct fw_address_region fwserial_mgmt_addr_region = {
.start = CSR_REGISTER_BASE + 0x1e0000ULL, .start = CSR_REGISTER_BASE + 0x1e0000ULL,
.end = 0x1000000000000ULL, .end = 0x1000000000000ULL,
}; };
......
...@@ -352,7 +352,7 @@ struct fw_serial { ...@@ -352,7 +352,7 @@ struct fw_serial {
static const char tty_dev_name[] = TTY_DEV_NAME; static const char tty_dev_name[] = TTY_DEV_NAME;
static const char loop_dev_name[] = "fwloop"; static const char loop_dev_name[] = "fwloop";
struct tty_driver *fwtty_driver; extern struct tty_driver *fwtty_driver;
#define driver_err(s, v...) pr_err(KBUILD_MODNAME ": " s, ##v) #define driver_err(s, v...) pr_err(KBUILD_MODNAME ": " s, ##v)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment