LCOV - code coverage report
Current view: top level - drivers/base - firmware.c (source / functions) Hit Total Coverage
Test: Real Lines: 4 4 100.0 %
Date: 2020-10-17 15:46:16 Functions: 0 1 0.0 %
Legend: Neither, QEMU, Real, Both Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : /*
       3                 :            :  * firmware.c - firmware subsystem hoohaw.
       4                 :            :  *
       5                 :            :  * Copyright (c) 2002-3 Patrick Mochel
       6                 :            :  * Copyright (c) 2002-3 Open Source Development Labs
       7                 :            :  * Copyright (c) 2007 Greg Kroah-Hartman <gregkh@suse.de>
       8                 :            :  * Copyright (c) 2007 Novell Inc.
       9                 :            :  */
      10                 :            : #include <linux/kobject.h>
      11                 :            : #include <linux/module.h>
      12                 :            : #include <linux/init.h>
      13                 :            : #include <linux/device.h>
      14                 :            : 
      15                 :            : #include "base.h"
      16                 :            : 
      17                 :            : struct kobject *firmware_kobj;
      18                 :            : EXPORT_SYMBOL_GPL(firmware_kobj);
      19                 :            : 
      20                 :          3 : int __init firmware_init(void)
      21                 :            : {
      22                 :          3 :         firmware_kobj = kobject_create_and_add("firmware", NULL);
      23                 :          3 :         if (!firmware_kobj)
      24                 :            :                 return -ENOMEM;
      25                 :          3 :         return 0;
      26                 :            : }
    

Generated by: LCOV version 1.14