f3ede209d4
Follow the usual naming conventions. While at it, fix i915_pci.h SPDX license comment format and add header include guards. Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210825150623.28980-1-jani.nikula@intel.com
13 lines
233 B
C
13 lines
233 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_PCI_H__
|
|
#define __I915_PCI_H__
|
|
|
|
int i915_pci_register_driver(void);
|
|
void i915_pci_unregister_driver(void);
|
|
|
|
#endif /* __I915_PCI_H__ */
|