• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 /* (c) 2005 Linux Networx GPL see COPYING for details */
4 
5 #ifndef DEVICE_CARDBUS_H
6 #define DEVICE_CARDBUS_H
7 
8 #include <device/device.h>
9 
10 void cardbus_read_resources(struct device *dev);
11 void cardbus_enable_resources(struct device *dev);
12 
13 extern struct device_operations default_cardbus_ops_bus;
14 
15 #endif /* DEVICE_CARDBUS_H */
16