firmware.c 375 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2012 Samsung Electronics.
  4. * Kyungmin Park <[email protected]>
  5. * Tomasz Figa <[email protected]>
  6. */
  7. #include <linux/kernel.h>
  8. #include <linux/suspend.h>
  9. #include <asm/firmware.h>
  10. static const struct firmware_ops default_firmware_ops;
  11. const struct firmware_ops *firmware_ops = &default_firmware_ops;