mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
29685ea575
rc is assigned first, so it does not need to initialize the assignment. Signed-off-by: Li kunyu <kunyu@nfschina.com> Acked-by: Andrew Donnellan <ajd@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20231113015229.12074-1-kunyu@nfschina.com
38 lines
617 B
C
38 lines
617 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
// Copyright 2017 IBM Corp.
|
|
#include <linux/module.h>
|
|
#include <linux/pci.h>
|
|
#include <asm/mmu.h>
|
|
#include "ocxl_internal.h"
|
|
|
|
static int __init init_ocxl(void)
|
|
{
|
|
int rc;
|
|
|
|
if (!tlbie_capable)
|
|
return -EINVAL;
|
|
|
|
rc = ocxl_file_init();
|
|
if (rc)
|
|
return rc;
|
|
|
|
rc = pci_register_driver(&ocxl_pci_driver);
|
|
if (rc) {
|
|
ocxl_file_exit();
|
|
return rc;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void exit_ocxl(void)
|
|
{
|
|
pci_unregister_driver(&ocxl_pci_driver);
|
|
ocxl_file_exit();
|
|
}
|
|
|
|
module_init(init_ocxl);
|
|
module_exit(exit_ocxl);
|
|
|
|
MODULE_DESCRIPTION("Open Coherent Accelerator");
|
|
MODULE_LICENSE("GPL");
|