~ubuntu-branches/ubuntu/wily/linux-ti-omap4/wily

« back to all changes in this revision

Viewing changes to arch/powerpc/platforms/pseries/eeh_pseries.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2013-07-11 18:35:20 UTC
  • Revision ID: package-import@ubuntu.com-20130711183520-htnf1x4y5r11hndr
Tags: 3.5.0-229.42
* Release Tracking Bug
  - LP: #1199276

[ Paolo Pisati ]

* [Config] CONFIG_ATH9K_LEGACY_RATE_CONTROL is not set

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        ibm_configure_pe                = rtas_token("ibm,configure-pe");
84
84
        ibm_configure_bridge            = rtas_token ("ibm,configure-bridge");
85
85
 
86
 
        /* necessary sanity check */
 
86
        /*
 
87
         * Necessary sanity check. We needn't check "get-config-addr-info"
 
88
         * and its variant since the old firmware probably support address
 
89
         * of domain/bus/slot/function for EEH RTAS operations.
 
90
         */
87
91
        if (ibm_set_eeh_option == RTAS_UNKNOWN_SERVICE) {
88
92
                pr_warning("%s: RTAS service <ibm,set-eeh-option> invalid\n",
89
93
                        __func__);
102
106
                pr_warning("%s: RTAS service <ibm,slot-error-detail> invalid\n",
103
107
                        __func__);
104
108
                return -EINVAL;
105
 
        } else if (ibm_get_config_addr_info2 == RTAS_UNKNOWN_SERVICE &&
106
 
                   ibm_get_config_addr_info == RTAS_UNKNOWN_SERVICE) {
107
 
                pr_warning("%s: RTAS service <ibm,get-config-addr-info2> and "
108
 
                        "<ibm,get-config-addr-info> invalid\n",
109
 
                        __func__);
110
 
                return -EINVAL;
111
109
        } else if (ibm_configure_pe == RTAS_UNKNOWN_SERVICE &&
112
110
                   ibm_configure_bridge == RTAS_UNKNOWN_SERVICE) {
113
111
                pr_warning("%s: RTAS service <ibm,configure-pe> and "