mtip32xx: mark a few more items static
Missed two items: mtip_major, and mtip_pci_driver. Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
6316668fbc
commit
3ff147d3a8
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ static int instance;
|
||||||
* Global variable used to hold the major block device number
|
* Global variable used to hold the major block device number
|
||||||
* allocated in mtip_init().
|
* allocated in mtip_init().
|
||||||
*/
|
*/
|
||||||
int mtip_major;
|
static int mtip_major;
|
||||||
|
|
||||||
static DEFINE_SPINLOCK(rssd_index_lock);
|
static DEFINE_SPINLOCK(rssd_index_lock);
|
||||||
static DEFINE_IDA(rssd_index_ida);
|
static DEFINE_IDA(rssd_index_ida);
|
||||||
|
@ -3502,7 +3502,7 @@ static DEFINE_PCI_DEVICE_TABLE(mtip_pci_tbl) = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Structure that describes the PCI driver functions. */
|
/* Structure that describes the PCI driver functions. */
|
||||||
struct pci_driver mtip_pci_driver = {
|
static struct pci_driver mtip_pci_driver = {
|
||||||
.name = MTIP_DRV_NAME,
|
.name = MTIP_DRV_NAME,
|
||||||
.id_table = mtip_pci_tbl,
|
.id_table = mtip_pci_tbl,
|
||||||
.probe = mtip_pci_probe,
|
.probe = mtip_pci_probe,
|
||||||
|
|
Loading…
Reference in a new issue