aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/property.c
Commit message (Expand)AuthorAge
* device property: Add function to search for named child of deviceAdam Thomson2016-06-26
* Merge back new device properties material for v4.7.Rafael J. Wysocki2016-05-06
|\
| * device property: don't bother the drivers with struct property_setHeikki Krogerus2016-04-08
* | device property: Avoid potential dereferences of invalid pointersHeikki Krogerus2016-04-27
|/
* device property: convert to use match_string() helperAndy Shevchenko2016-03-17
* device property: fix for a case of use-after-freeHeikki Krogerus2016-03-10
* device property: fwnode->secondary may contain ERR_PTR(-ENODEV)Heikki Krogerus2016-03-08
* device property: avoid allocations of 0 lengthAndy Shevchenko2015-12-31
* device property: the secondary fwnode needs to depend on the primaryHeikki Krogerus2015-12-31
* device property: Take a copy of the property setMika Westerberg2015-12-06
* device property: Fallback to secondary fwnode if primary misses the propertyAndy Shevchenko2015-12-06
* device property: improve readability of macrosAndy Shevchenko2015-12-06
* device property: keep single value inplaceAndy Shevchenko2015-12-06
* device property: refactor built-in properties supportAndy Shevchenko2015-12-06
* device property: rename helper functionsAndy Shevchenko2015-12-06
* device property: always check for fwnode typeAndy Shevchenko2015-12-06
* device property: ACPI: Remove unused DMA APIsSuthikulpanit, Suravee2015-11-06
* device property: Adding DMA Attribute APIs for Generic DevicesSuthikulpanit, Suravee2015-11-06
* device property: Add fwnode_property_match_string()Mika Westerberg2015-09-24
* ACPI / property: Extend device_get_next_child_node() to data-only nodesRafael J. Wysocki2015-09-14
* ACPI / property: Extend fwnode_property_* to data-only subnodesRafael J. Wysocki2015-09-14
* device property: Don't overwrite addr when failing in device_get_mac_addressJulien Grall2015-09-08
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds2015-09-03
|\
| * device property: Return -ENXIO if there is no suitable FW interfaceGuenter Roeck2015-08-27
| * device property: Add ETH_ALEN check, update comments.Jeremy Linton2015-08-20
| * Add a matching set of device_ functions for determining mac/phyJeremy Linton2015-08-13
* | device property: fallback to pset when gettng one stringAndy Shevchenko2015-08-25
* | device property: fix potential NULL pointer dereferenceAndy Shevchenko2015-08-05
|/
*-. Merge branches 'acpi-video', 'device-properties', 'pm-sleep' and 'pm-cpuidle'Rafael J. Wysocki2015-06-25
|\ \
| | * ACPI / OF: Rename of_node() and acpi_node() to to_of_node() and to_acpi_node()Alexander Sverdlin2015-06-24
| |/
* / device property: Introduces device_dma_is_coherent()Suthikulpanit, Suravee2015-06-15
|/
* Merge tag 'pm+acpi-4.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds2015-04-14
|\
| * device property: Introduce firmware node type for platform dataRafael J. Wysocki2015-04-03
| * driver core: Implement device property accessors through fwnode onesRafael J. Wysocki2015-03-25
| * driver core: property: Update fwnode_property_read_string_array()Rafael J. Wysocki2015-03-25
| * driver core: Add comments about returning array countsAdrian Hunter2015-03-18
* | Driver core: Fix missing whitespace in function argumentFlorin Papa2015-03-25
|/
* Driver core: Unified interface for firmware node propertiesRafael J. Wysocki2014-11-04
* Driver core: Unified device properties interface for platform firmwareRafael J. Wysocki2014-11-04
='n441' href='#n441'>441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 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
























































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
PK