aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/bus.c
Commit message (Expand)AuthorAge
* driver core: bus: use to_subsys_private and to_device_private_busGeliang Tang2016-02-09
* driver core: bus: use list_for_each_entry*Geliang Tang2016-02-09
* driver-core: add asynchronous probing support for driversDmitry Torokhov2015-05-20
* driver core: bus: Goto appropriate labels on failure in bus_add_deviceJunjie Mao2015-03-25
* driver core: Fix unbalanced device reference in drivers_probeAlex Williamson2014-11-07
* Merge branch 'master' into for-nextJiri Kosina2014-02-20
|\
| * driver-core: Fix use-after-free triggered by bus_unregister()Bart Van Assche2014-01-08
* | treewide: Fix typo in Documentation/DocBookMasanari Iida2014-02-19
|/
* driver-core: remove struct bus_type.drv_attrsGreg Kroah-Hartman2013-09-28
* driver-core: remove struct bus_type.bus_attrsGreg Kroah-Hartman2013-09-28
* driver core: add #include <linux/sysfs.h> to core files.Greg Kroah-Hartman2013-08-27
* driver core: bus: use DRIVER_ATTR_WO()Greg Kroah-Hartman2013-08-23
* sysfs.h: remove attr_name() macroGreg Kroah-Hartman2013-08-22
* sysfs: add sysfs_create/remove_groups()Greg Kroah-Hartman2013-08-21
* driver core: bus_type: add bus_groupsGreg Kroah-Hartman2013-08-12
* driver core: bus_type: add drv_groupsGreg Kroah-Hartman2013-08-12
* driver core: bus_type: add dev_groupsGreg Kroah-Hartman2013-08-12
* driver core: export subsys_virtual_registerGreg Kroah-Hartman2013-05-21
* Merge branch 'for-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds2013-04-29
|\
| * driver/base: implement subsys_virtual_register()Tejun Heo2013-03-12
* | device: separate all subsys mutexesMichal Hocko2013-03-13
|/
* Driver core: treat unregistered bus_types as having no devicesBjorn Helgaas2013-02-03
* driver core: fix possible missing of device probeMing Lei2013-01-17
* driver core: remove CONFIG_HOTPLUG ifdefsBill Pemberton2012-11-28
* driver core: move uevent call to driver_registerSebastian Ott2012-07-16
* Revert "driver core: check start node in klist_iter_init_node"Greg Kroah-Hartman2012-04-19
* driver core: check start node in klist_iter_init_nodeHannes Reinecke2012-04-18
* drivers/base/bus.c: local variables should not be exposed globallyH Hartley Sweeten2012-04-18
* Merge 3.3-rc2 into the driver-core-next branch.Greg Kroah-Hartman2012-02-02
|\
| * kernel-doc: fix new warnings in driver-coreRandy Dunlap2012-01-23
* | driver-core: Fix possible null reference in subsys_interface_unregisterJonghwan Choi2012-01-24
|/
* driver-core: implement 'sysdev' functionality for regular devices and busesKay Sievers2011-12-14
* Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jiko...Linus Torvalds2011-01-13
|\
| * Fix "forcably" comment typoRobert P. J. Day2010-11-21
* | driver-core: merge private parts of class and busKay Sievers2010-11-17
|/
* driver core: remove CONFIG_SYSFS_DEPRECATED_V2 but keep it for block devicesKay Sievers2010-10-22
* driver core: fix memory leak on one error path in bus_register()Jike Song2010-08-05
* include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo2010-03-30
* Driver core: create lock/unlock functions for struct deviceGreg Kroah-Hartman2010-03-07
* Driver core: Constify struct sysfs_ops in struct kobj_typeEmese Revfy2010-03-07
* kobject: Constify struct kset_uevent_opsEmese Revfy2010-03-07
* driver core: Prevent reference to freed memory on error pathPhil Carmody2009-12-23
* Driver core: allow certain drivers prohibit bind/unbind via sysfsDmitry Torokhov2009-10-30
* Driver core: add new device to bus's list before probingAlan Stern2009-09-15
* trivial: fix grammo in bus_for_each_dev() kerneldocAlex Chiang2009-06-12
* Driver Core: do not oops when driver_unregister() is called for unregistered ...Kay Sievers2009-05-28
* driver core: move knode_bus into private structureGreg Kroah-Hartman2009-03-24
* driver-core: do not register a driver with bus_type not registeredDave Young2009-03-24
* driver core: check bus->match without holding device lockMing Lei2009-03-24
* Revert "driver core: move knode_bus into private structure"Greg Kroah-Hartman2009-01-09
/a> 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879














































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
ÐÏࡱá