firmware.c (0eacd06bb8adea8dd9edb0a30144166d9f227e64) firmware.c (1c6b5a7e74052768977855f95d6b8812f6e7772c)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * pSeries firmware setup code.
4 *
5 * Portions from arch/powerpc/platforms/pseries/setup.c:
6 * Copyright (C) 1995 Linus Torvalds
7 * Adapted from 'alpha' version by Gary Thomas
8 * Modified by Cort Dougan (cort@cs.nmt.edu)

--- 109 unchanged lines hidden (view full) ---

118};
119
120static __initdata struct vec5_fw_feature
121vec5_fw_features_table[] = {
122 {FW_FEATURE_FORM1_AFFINITY, OV5_FORM1_AFFINITY},
123 {FW_FEATURE_PRRN, OV5_PRRN},
124 {FW_FEATURE_DRMEM_V2, OV5_DRMEM_V2},
125 {FW_FEATURE_DRC_INFO, OV5_DRC_INFO},
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * pSeries firmware setup code.
4 *
5 * Portions from arch/powerpc/platforms/pseries/setup.c:
6 * Copyright (C) 1995 Linus Torvalds
7 * Adapted from 'alpha' version by Gary Thomas
8 * Modified by Cort Dougan (cort@cs.nmt.edu)

--- 109 unchanged lines hidden (view full) ---

118};
119
120static __initdata struct vec5_fw_feature
121vec5_fw_features_table[] = {
122 {FW_FEATURE_FORM1_AFFINITY, OV5_FORM1_AFFINITY},
123 {FW_FEATURE_PRRN, OV5_PRRN},
124 {FW_FEATURE_DRMEM_V2, OV5_DRMEM_V2},
125 {FW_FEATURE_DRC_INFO, OV5_DRC_INFO},
126 {FW_FEATURE_FORM2_AFFINITY, OV5_FORM2_AFFINITY},
126};
127
128static void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
129{
130 unsigned int index, feat;
131 int i;
132
133 pr_debug(" -> fw_vec5_feature_init()\n");

--- 54 unchanged lines hidden ---
127};
128
129static void __init fw_vec5_feature_init(const char *vec5, unsigned long len)
130{
131 unsigned int index, feat;
132 int i;
133
134 pr_debug(" -> fw_vec5_feature_init()\n");

--- 54 unchanged lines hidden ---